[wpmu-trac] [WordPress MU Trac] #960: Bug in get_blog_list
(wpmu_functions.php)
WordPress MU Trac
wpmu-trac at lists.automattic.com
Tue Apr 21 13:41:47 GMT 2009
#960: Bug in get_blog_list (wpmu_functions.php)
------------------------+---------------------------------------------------
Reporter: DeannaS | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: component1 | Version:
Severity: normal | Keywords:
------------------------+---------------------------------------------------
If there are no blogs except the main blog, and get_blog_list() is called,
it returns the following error:
Warning: array_slice() [function.array-slice]: The first argument should
be an array in /home/juwcoope/public_html/fyi-training/wp-includes/wpmu-
functions.php on line 607
You can fix this problem by updating the code around line #607 with the
following:
{{{
if (is_array($blogs)) {
if( $num == 'all' ) {
return array_slice( $blogs, $start, count( $blogs
) );
} else {
return array_slice( $blogs, $start, $num );
}
}
else {
$blogs = array();
return $blogs;
}
}}}
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/960>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list