Assign correct variable.

props nendeb55.
fixes #27351. see #14424, [27373].

Built from https://develop.svn.wordpress.org/trunk@27501


git-svn-id: http://core.svn.wordpress.org/trunk@27344 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-03-11 13:24:14 +00:00
parent 14eb14db06
commit fe260c6a15
2 changed files with 2 additions and 2 deletions

View File

@ -2257,7 +2257,7 @@ function media_upload_library_form($errors) {
$q = $_GET;
$q['posts_per_page'] = 10;
$q = isset( $q['paged'] ) ? intval( $q['paged'] ) : 0;
$q['paged'] = isset( $q['paged'] ) ? intval( $q['paged'] ) : 0;
if ( $q['paged'] < 1 ) {
$q['paged'] = 1;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '3.9-beta1';
$wp_version = '3.9-beta1-27501';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.