mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
improperly calling strftime() instead of date()
This commit is contained in:
parent
5357684b33
commit
d85327d46d
@ -32,6 +32,7 @@
|
||||
- Fixed matrixview warnings when viewing manual.
|
||||
- Fixed problem with moving to prev/next msg in NNTP.
|
||||
- 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.
|
||||
|
||||
|
@ -145,7 +145,7 @@
|
||||
&& $phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
|
||||
echo "<!-- Calendar info -->\n";
|
||||
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\">"
|
||||
. $phpgw->calendar->print_day_at_a_glance($phpgw->calendar->today)."</td></tr></table>\n";
|
||||
echo "<!-- Calendar info -->\n";
|
||||
|
Loading…
Reference in New Issue
Block a user