main/inc/lib/blog.lib.php 1 location
|
@@ 2430-2433 (lines=4) @@
|
| 2427 |
|
$bgcolor = $ii < 5 ? $class="class=\"days_week\"" : $class="class=\"days_weekend\""; |
| 2428 |
|
$dayheader = "$curday"; |
| 2429 |
|
|
| 2430 |
|
if(($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 2431 |
|
$dayheader = "$curday"; |
| 2432 |
|
$class = "class=\"days_today\""; |
| 2433 |
|
} |
| 2434 |
|
|
| 2435 |
|
echo "<td " . $class.">"; |
| 2436 |
|
|
main/inc/lib/agenda.lib.php 1 location
|
@@ 3777-3779 (lines=3) @@
|
| 3774 |
|
$curday, |
| 3775 |
|
array('class' => 'agenda_day') |
| 3776 |
|
); |
| 3777 |
|
if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) { |
| 3778 |
|
$class = "class=\"days_today\" style=\"width:10%;\""; |
| 3779 |
|
} |
| 3780 |
|
|
| 3781 |
|
$html .= "<td ".$class.">".$dayheader; |
| 3782 |
|
|