Apply filteres when returning empty array from get_pages. Props epper. fixes #4712 for trunk

git-svn-id: https://develop.svn.wordpress.org/trunk@6204 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-10-08 22:25:33 +00:00
parent 64270523e9
commit 15bfa9d2fb
1 changed files with 1 additions and 1 deletions

View File

@ -1210,7 +1210,7 @@ function &get_pages($args = '') {
$pages = $wpdb->get_results($query);
if ( empty($pages) )
return array();
return apply_filters('get_pages', array(), $r);
// Update cache.
update_page_cache($pages);