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:
Andrew Nacin 2010-03-12 00:26:31 +00:00
parent b1ab90b3b3
commit f367a78cb7
1 changed files with 25 additions and 25 deletions

View File

@ -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: