main/inc/lib/blog.lib.php 1 location
|
@@ 2402-2405 (lines=4) @@
|
| 2399 |
|
$bgcolor = $ii < 5 ? $class="class=\"days_week\"" : $class="class=\"days_weekend\""; |
| 2400 |
|
$dayheader = "$curday"; |
| 2401 |
|
|
| 2402 |
|
if(($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 2403 |
|
$dayheader = "$curday"; |
| 2404 |
|
$class = "class=\"days_today\""; |
| 2405 |
|
} |
| 2406 |
|
|
| 2407 |
|
echo "<td " . $class.">"; |
| 2408 |
|
|
main/inc/lib/agenda.lib.php 1 location
|
@@ 3173-3175 (lines=3) @@
|
| 3170 |
|
if (($curday > 0) && ($curday <= $numberofdays[$month])) { |
| 3171 |
|
$bgcolor = $class = 'class="days_week"'; |
| 3172 |
|
$dayheader = Display::div($curday, array('class'=>'agenda_day')); |
| 3173 |
|
if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 3174 |
|
$class = "class=\"days_today\" style=\"width:10%;\""; |
| 3175 |
|
} |
| 3176 |
|
|
| 3177 |
|
echo "<td ".$class.">".$dayheader; |
| 3178 |
|
|