main/inc/lib/blog.lib.php 1 location
|
@@ 2417-2420 (lines=4) @@
|
| 2414 |
|
$bgcolor = $ii < 5 ? $class="class=\"days_week\"" : $class="class=\"days_weekend\""; |
| 2415 |
|
$dayheader = "$curday"; |
| 2416 |
|
|
| 2417 |
|
if(($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 2418 |
|
$dayheader = "$curday"; |
| 2419 |
|
$class = "class=\"days_today\""; |
| 2420 |
|
} |
| 2421 |
|
|
| 2422 |
|
echo "<td " . $class.">"; |
| 2423 |
|
|
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 |
|
|