main/inc/lib/agenda.lib.php 1 location
|
@@ 3222-3224 (lines=3) @@
|
| 3219 |
|
$html .= '</div>'; |
| 3220 |
|
$html .= '<table id="agenda_list2" class="table table-bordered">'; |
| 3221 |
|
$html .= '<tr>'; |
| 3222 |
|
for ($ii = 1; $ii < 8; $ii ++) { |
| 3223 |
|
$html .= '<td class="weekdays">'.$DaysShort[$ii % 7].'</td>'; |
| 3224 |
|
} |
| 3225 |
|
$html .= '</tr>'; |
| 3226 |
|
|
| 3227 |
|
$curday = -1; |
main/inc/lib/blog.lib.php 1 location
|
@@ 2407-2408 (lines=2) @@
|
| 2404 |
|
|
| 2405 |
|
echo "<tr>"; |
| 2406 |
|
|
| 2407 |
|
for($ii = 1; $ii < 8; $ii ++) |
| 2408 |
|
echo "<td class=\"weekdays\">", $DaysShort[$ii % 7], "</td>"; |
| 2409 |
|
|
| 2410 |
|
echo "</tr>"; |
| 2411 |
|
|