improperly calling strftime() instead of date()

This commit is contained in:
skeeter 2000-12-03 21:50:47 +00:00
parent 5357684b33
commit d85327d46d
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@
- Fixed matrixview warnings when viewing manual. - Fixed matrixview warnings when viewing manual.
- Fixed problem with moving to prev/next msg in NNTP. - Fixed problem with moving to prev/next msg in NNTP.
- Fix possible problem connecting to LDAP server. - Fix possible problem connecting to LDAP server.
- Fix home page display of calendar events.
[0.9.6] - Fix user permissions where not being checked properly. [0.9.6] - Fix user permissions where not being checked properly.

View File

@ -145,7 +145,7 @@
&& $phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) { && $phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
echo "<!-- Calendar info -->\n"; echo "<!-- Calendar info -->\n";
echo "<table border=\"0\" width=\"70%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\">" echo "<table border=\"0\" width=\"70%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\">"
. lang(strftime("%B",$phpgw->calendar->today["full"])) . " " .$phpgw->calendar->today["day"] . ", " . $phpgw->calendar->today["year"] ."</tr></td>" . lang(date("F",$phpgw->calendar->today["raw"])) . " " .$phpgw->calendar->today["day"] . ", " . $phpgw->calendar->today["year"] ."</tr></td>"
. "<tr><td bgcolor=\"".$phpgw_info["theme"]["bg_text"]."\" valign=\"top\">" . "<tr><td bgcolor=\"".$phpgw_info["theme"]["bg_text"]."\" valign=\"top\">"
. $phpgw->calendar->print_day_at_a_glance($phpgw->calendar->today)."</td></tr></table>\n"; . $phpgw->calendar->print_day_at_a_glance($phpgw->calendar->today)."</td></tr></table>\n";
echo "<!-- Calendar info -->\n"; echo "<!-- Calendar info -->\n";