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:
Mark Jaquith 2013-07-12 07:26:11 +00:00
parent e2e23327e0
commit 7cf1702442
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ function wp_prepare_revisions_for_js( $post, $selected_revision_id, $from = null
// Now, grab the initial diff
$compare_two_mode = (bool) $from;
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(
'id' => $from . ':' . $selected_revision_id,