mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
fixed edit_entry.php time parameter
This commit is contained in:
parent
02d21efaaa
commit
d3ea37babc
@ -618,8 +618,8 @@
|
||||
"year=" . date("Y",$date)
|
||||
. "&month=" . date("m",$date)
|
||||
. "&day=" . date("d",$date)
|
||||
. "&hour=" . substr($time,0,2)
|
||||
. "&minute=" . substr($time,2,2))
|
||||
. "&hour=" . substr($time,0,strpos($time,":"))
|
||||
. "&minute=" . substr($time,strpos($time,":")+1,2))
|
||||
. "\">$time</A></FONT></TH>";
|
||||
|
||||
if ($rowspan > 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user