main/inc/lib/agenda.lib.php 1 location
|
@@ 3238-3240 (lines=3) @@
|
| 3235 |
|
if (($curday > 0) && ($curday <= $numberofdays[$month])) { |
| 3236 |
|
$bgcolor = $class = 'class="days_week"'; |
| 3237 |
|
$dayheader = Display::div($curday, array('class'=>'agenda_day')); |
| 3238 |
|
if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 3239 |
|
$class = "class=\"days_today\" style=\"width:10%;\""; |
| 3240 |
|
} |
| 3241 |
|
|
| 3242 |
|
$html .= "<td ".$class.">".$dayheader; |
| 3243 |
|
|
main/inc/lib/blog.lib.php 1 location
|
@@ 2425-2428 (lines=4) @@
|
| 2422 |
|
$bgcolor = $ii < 5 ? $class="class=\"days_week\"" : $class="class=\"days_weekend\""; |
| 2423 |
|
$dayheader = "$curday"; |
| 2424 |
|
|
| 2425 |
|
if(($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 2426 |
|
$dayheader = "$curday"; |
| 2427 |
|
$class = "class=\"days_today\""; |
| 2428 |
|
} |
| 2429 |
|
|
| 2430 |
|
echo "<td " . $class.">"; |
| 2431 |
|
|