Check for empty(), not !is_array(), when trying to determine if wpdb::get_results() returned results. See #10607
git-svn-id: https://develop.svn.wordpress.org/trunk@13681 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b1ab90b3b3
commit
f367a78cb7
@ -29,7 +29,10 @@ switch ( $action ) {
|
||||
}
|
||||
|
||||
$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 ) ) {
|
||||
if ( empty( $blogs ) ) {
|
||||
echo '<p>' . __( 'All done!' ) . '</p>';
|
||||
break;
|
||||
}
|
||||
echo "<ul>";
|
||||
foreach ( (array) $blogs as $details ) {
|
||||
if ( $details['spam'] == 0 && $details['deleted'] == 0 && $details['archived'] == 0 ) {
|
||||
@ -52,9 +55,6 @@ switch ( $action ) {
|
||||
setTimeout( "nextpage()", 250 );
|
||||
//-->
|
||||
</script><?php
|
||||
} else {
|
||||
echo '<p>'.__('All Done!').'</p>';
|
||||
}
|
||||
break;
|
||||
case 'show':
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user