main/inc/lib/agenda.lib.php 1 location
|
@@ 3174-3176 (lines=3) @@
|
| 3171 |
|
if (($curday > 0) && ($curday <= $numberofdays[$month])) { |
| 3172 |
|
$bgcolor = $class = 'class="days_week"'; |
| 3173 |
|
$dayheader = Display::div($curday, array('class'=>'agenda_day')); |
| 3174 |
|
if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 3175 |
|
$class = "class=\"days_today\" style=\"width:10%;\""; |
| 3176 |
|
} |
| 3177 |
|
|
| 3178 |
|
$html .= "<td ".$class.">".$dayheader; |
| 3179 |
|
|
main/inc/lib/blog.lib.php 1 location
|
@@ 2634-2637 (lines=4) @@
|
| 2631 |
|
$bgcolor = $ii < 5 ? $class = "class=\"days_week\"" : $class = "class=\"days_weekend\""; |
| 2632 |
|
$dayheader = "$curday"; |
| 2633 |
|
|
| 2634 |
|
if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 2635 |
|
$dayheader = "$curday"; |
| 2636 |
|
$class = "class=\"days_today\""; |
| 2637 |
|
} |
| 2638 |
|
|
| 2639 |
|
$html .= '<td '.$class.'>'; |
| 2640 |
|
|