Update to CodeIgniter 2.1.0
This commit is contained in:
6
system/libraries/Xmlrpc.php
Executable file → Normal file
6
system/libraries/Xmlrpc.php
Executable file → Normal file
@@ -1404,14 +1404,14 @@ class XML_RPC_Values extends CI_Xmlrpc
|
||||
{
|
||||
if ($utc == 1)
|
||||
{
|
||||
$t = strftime("%Y%m%dT%H:%M:%S", $time);
|
||||
$t = strftime("%Y%m%dT%H:%i:%s", $time);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (function_exists('gmstrftime'))
|
||||
$t = gmstrftime("%Y%m%dT%H:%M:%S", $time);
|
||||
$t = gmstrftime("%Y%m%dT%H:%i:%s", $time);
|
||||
else
|
||||
$t = strftime("%Y%m%dT%H:%M:%S", $time - date('Z'));
|
||||
$t = strftime("%Y%m%dT%H:%i:%s", $time - date('Z'));
|
||||
}
|
||||
return $t;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user