Apply filteres when returning empty array from get_pages. Props epper. fixes #4712 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@6204 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c10999aec9
commit
b8febc8501
|
@ -1210,7 +1210,7 @@ function &get_pages($args = '') {
|
||||||
$pages = $wpdb->get_results($query);
|
$pages = $wpdb->get_results($query);
|
||||||
|
|
||||||
if ( empty($pages) )
|
if ( empty($pages) )
|
||||||
return array();
|
return apply_filters('get_pages', array(), $r);
|
||||||
|
|
||||||
// Update cache.
|
// Update cache.
|
||||||
update_page_cache($pages);
|
update_page_cache($pages);
|
||||||
|
|
Loading…
Reference in New Issue