forked from extern/egroupware
Fixed cell colors
This commit is contained in:
parent
e3632ca674
commit
94a082d55b
@ -128,7 +128,7 @@
|
|||||||
$today = mktime(2,0,0,date("m"),date("d"),date("Y"));
|
$today = mktime(2,0,0,date("m"),date("d"),date("Y"));
|
||||||
|
|
||||||
for ($i = $sun; date("Ymd",$i) <= date("Ymd",$monthend); $i += (24 * 3600 * 7) ) {
|
for ($i = $sun; date("Ymd",$i) <= date("Ymd",$monthend); $i += (24 * 3600 * 7) ) {
|
||||||
$CELLBG = $phpgw->nextmatchs->alternate_row_color($CELLBG);
|
$cellcolor = $phpgw->nextmatchs->alternate_row_color($cellcolor);
|
||||||
|
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
for ($j = 0; $j < 7; $j++) {
|
for ($j = 0; $j < 7; $j++) {
|
||||||
@ -139,7 +139,8 @@
|
|||||||
if (date("Ymd",$date) == date("Ymd",$today)) {
|
if (date("Ymd",$date) == date("Ymd",$today)) {
|
||||||
echo " bgcolor=\"".$phpgw_info["theme"]["cal_today"]."\">";
|
echo " bgcolor=\"".$phpgw_info["theme"]["cal_today"]."\">";
|
||||||
} else {
|
} else {
|
||||||
echo " bgcolor=\"".$phpgw_info["theme"]["cal_dayview"]."\">";
|
echo " bgcolor=\"$cellcolor\">";
|
||||||
|
// echo " bgcolor=\"".$phpgw_info["theme"]["cal_dayview"]."\">";
|
||||||
}
|
}
|
||||||
|
|
||||||
print_date_entries($date,$friendly,$phpgw_info["user"]["sessionid"]);
|
print_date_entries($date,$friendly,$phpgw_info["user"]["sessionid"]);
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
- Fixed access_log not being updated durring logouts.
|
- Fixed access_log not being updated durring logouts.
|
||||||
- Fixed email/folders.php not showing the number of messages in the INBOX.
|
- Fixed email/folders.php not showing the number of messages in the INBOX.
|
||||||
- Fixed messages that where being passed around in the headlines admin section.
|
- Fixed messages that where being passed around in the headlines admin section.
|
||||||
|
- Fixed setup script not working properly with certain version of MySQL.
|
||||||
|
|
||||||
[0.9.1] - Fixed a few missing variables with templates.
|
[0.9.1] - Fixed a few missing variables with templates.
|
||||||
- editing a product in the inventory program now forwards you back to the category
|
- editing a product in the inventory program now forwards you back to the category
|
||||||
|
Loading…
Reference in New Issue
Block a user