Assign correct variable.

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


git-svn-id: https://develop.svn.wordpress.org/trunk@27501 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-11 13:23:14 +00:00
parent 1f5eec43cd
commit 6aa60cf530
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-src';
$wp_version = '3.9-beta1-27501-src';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.