Solved a display problem with events in week views
This commit is contained in:
parent
c079e3fc57
commit
474b46ba16
1 changed files with 4 additions and 4 deletions
|
@ -62,7 +62,7 @@ $index = 0;
|
|||
<span class="calendar-hour"><?php print date_t('All day', 'datetime')?></span>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
<?php for($j = 0; $j < 6; $j++): ?>
|
||||
<?php for($j = 0; $j < 7; $j++): ?>
|
||||
<?php $cell = (empty($all_day[$j][$i])) ? NULL : $all_day[$j][$i]; ?>
|
||||
<?php if($cell != NULL && $cell['filled'] && $cell['wday'] == $j): ?>
|
||||
<?php for($k = $colpos; $k < $cell['wday']; $k++) : ?>
|
||||
|
@ -93,7 +93,7 @@ $index = 0;
|
|||
<?php for ($i = $curpos; $i < $colpos; $i++): ?>
|
||||
<td class="calendar-agenda-items single-day">
|
||||
<div class="calendar">
|
||||
<div class="inner"> </div>
|
||||
<div class="inner"> </div>
|
||||
</div>
|
||||
</td>
|
||||
<?php endfor; ?>
|
||||
|
@ -113,7 +113,7 @@ $index = 0;
|
|||
<?php for ($i = $curpos; $i < 7; $i++): ?>
|
||||
<td class="calendar-agenda-items single-day">
|
||||
<div class="calendar">
|
||||
<div class="inner"> </div>
|
||||
<div class="inner"> </div>
|
||||
</div>
|
||||
</td>
|
||||
<?php endfor; ?>
|
||||
|
@ -121,4 +121,4 @@ $index = 0;
|
|||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div></div>
|
||||
</div></div>
|
||||
|
|
Reference in a new issue