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:
parent
14eb14db06
commit
fe260c6a15
|
@ -2257,7 +2257,7 @@ function media_upload_library_form($errors) {
|
||||||
|
|
||||||
$q = $_GET;
|
$q = $_GET;
|
||||||
$q['posts_per_page'] = 10;
|
$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 ) {
|
if ( $q['paged'] < 1 ) {
|
||||||
$q['paged'] = 1;
|
$q['paged'] = 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue