Fix a PHP 5.4-ism that slipped in.
git-svn-id: http://core.svn.wordpress.org/trunk@24670 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2e23327e0
commit
7cf1702442
|
@ -101,7 +101,8 @@ function wp_prepare_revisions_for_js( $post, $selected_revision_id, $from = null
|
||||||
// Now, grab the initial diff
|
// Now, grab the initial diff
|
||||||
$compare_two_mode = (bool) $from;
|
$compare_two_mode = (bool) $from;
|
||||||
if ( ! $from ) // Single mode
|
if ( ! $from ) // Single mode
|
||||||
$from = array_keys( array_slice( $revisions, array_search( $selected_revision_id, array_keys( $revisions ) ) - 1, 1, true ) )[0];
|
$from = array_keys( array_slice( $revisions, array_search( $selected_revision_id, array_keys( $revisions ) ) - 1, 1, true ) );
|
||||||
|
$from = $from[0];
|
||||||
|
|
||||||
$diffs = array( array(
|
$diffs = array( array(
|
||||||
'id' => $from . ':' . $selected_revision_id,
|
'id' => $from . ':' . $selected_revision_id,
|
||||||
|
|
Loading…
Reference in New Issue