summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wp-admin/wpmu-upgrade-site.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/wpmu-upgrade-site.php b/wp-admin/wpmu-upgrade-site.php
index 284b9ca..ae0f9ee 100644
--- a/wp-admin/wpmu-upgrade-site.php
+++ b/wp-admin/wpmu-upgrade-site.php
@@ -19,7 +19,7 @@ switch( $_GET[ 'action' ] ) {
if( isset( $_GET[ 'n' ] ) == false ) {
$n = 0;
} else {
- $n = $_GET[ 'n' ];
+ $n = intval( $_GET[ 'n' ] );
}
$blogs = $wpdb->get_results( "SELECT * FROM $wpdb->blogs WHERE site_id = '$wpdb->siteid' AND spam = '0' AND deleted = '0' AND archived = '0' ORDER BY registered DESC LIMIT $n, 5", ARRAY_A );
if( is_array( $blogs ) ) {