Changeset 654

Show
Ignore:
Timestamp:
07/11/06 15:31:50 (2 years ago)
Author:
donncha
Message:

Check that $pages is an array.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wpmu-settings.php

    r630 r654  
    8787        // is the request for a page of the main blog? We need to cache this information somewhere to save a request 
    8888        $pages = $wpdb->get_col( "SELECT post_name FROM {$table_prefix}1_posts WHERE post_type='page'" );  
     89 
     90        if( is_array( $pages ) == false )  
     91                return false; 
     92 
    8993        if( in_array( $blogname, $pages ) ) { 
    9094                return true;