Use correct variables. props batmoo. fixes #20566.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20665 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f8eeababd4
commit
6fff51eebe
|
@ -2558,7 +2558,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
// Do some timestamp voodoo
|
// Do some timestamp voodoo
|
||||||
if ( !empty( $content_struct['date_created_gmt'] ) ) {
|
if ( !empty( $content_struct['date_created_gmt'] ) ) {
|
||||||
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
||||||
$dateCreated = rtrim( $content_struct['post_date_gmt']->getIso(), 'Z' ) . 'Z';
|
$dateCreated = rtrim( $content_struct['date_created_gmt']->getIso(), 'Z' ) . 'Z';
|
||||||
$comment_date = get_date_from_gmt(iso8601_to_datetime($dateCreated));
|
$comment_date = get_date_from_gmt(iso8601_to_datetime($dateCreated));
|
||||||
$comment_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
|
$comment_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
|
||||||
}
|
}
|
||||||
|
@ -3826,7 +3826,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
// Do some timestamp voodoo
|
// Do some timestamp voodoo
|
||||||
if ( !empty( $content_struct['date_created_gmt'] ) )
|
if ( !empty( $content_struct['date_created_gmt'] ) )
|
||||||
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
||||||
$dateCreated = rtrim( $content_struct['post_date_gmt']->getIso(), 'Z' ) . 'Z';
|
$dateCreated = rtrim( $content_struct['date_created_gmt']->getIso(), 'Z' ) . 'Z';
|
||||||
elseif ( !empty( $content_struct['dateCreated']) )
|
elseif ( !empty( $content_struct['dateCreated']) )
|
||||||
$dateCreated = $content_struct['dateCreated']->getIso();
|
$dateCreated = $content_struct['dateCreated']->getIso();
|
||||||
|
|
||||||
|
@ -4145,7 +4145,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
// Do some timestamp voodoo
|
// Do some timestamp voodoo
|
||||||
if ( !empty( $content_struct['date_created_gmt'] ) )
|
if ( !empty( $content_struct['date_created_gmt'] ) )
|
||||||
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
||||||
$dateCreated = rtrim( $content_struct['post_date_gmt']->getIso(), 'Z' ) . 'Z';
|
$dateCreated = rtrim( $content_struct['date_created_gmt']->getIso(), 'Z' ) . 'Z';
|
||||||
elseif ( !empty( $content_struct['dateCreated']) )
|
elseif ( !empty( $content_struct['dateCreated']) )
|
||||||
$dateCreated = $content_struct['dateCreated']->getIso();
|
$dateCreated = $content_struct['dateCreated']->getIso();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue