Removed useless date() call.
git-svn-id: https://develop.svn.wordpress.org/trunk@1221 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f24aeb0975
commit
512779f259
@ -86,7 +86,7 @@ case 'post':
|
||||
$hh = ($hh > 23) ? $hh - 24 : $hh;
|
||||
$mn = ($mn > 59) ? $mn - 60 : $mn;
|
||||
$ss = ($ss > 59) ? $ss - 60 : $ss;
|
||||
$now = date("$aa-$mm-$jj $hh:$mn:$ss");
|
||||
$now = "$aa-$mm-$jj $hh:$mn:$ss";
|
||||
$now_gmt = get_gmt_from_date("$aa-$mm-$jj $hh:$mn:$ss");
|
||||
} else {
|
||||
$now = current_time('mysql');
|
||||
|
Loading…
Reference in New Issue
Block a user