summaryrefslogtreecommitdiffstats
path: root/wp-includes/category.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-31 11:20:07 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-31 11:20:07 +0000
commit47bbd1a907d44da6e2a68aef7d03f725c5b16111 (patch)
tree6e3b054584145142576ebaa26cca9f6e878ec78f /wp-includes/category.php
parent2af62b45328bed8acc4c2484964722eed237c665 (diff)
downloadwordpress-mu-47bbd1a907d44da6e2a68aef7d03f725c5b16111.tar.gz
wordpress-mu-47bbd1a907d44da6e2a68aef7d03f725c5b16111.tar.xz
wordpress-mu-47bbd1a907d44da6e2a68aef7d03f725c5b16111.zip
WP Merge to rev 4850
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@875 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/category.php')
-rw-r--r--wp-includes/category.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-includes/category.php b/wp-includes/category.php
index 7fdc334..2ba3d30 100644
--- a/wp-includes/category.php
+++ b/wp-includes/category.php
@@ -33,7 +33,7 @@ function &get_categories($args = '') {
$key = md5( serialize( $r ) );
if ( $cache = wp_cache_get( 'get_categories', 'category' ) )
if ( isset( $cache[ $key ] ) )
- return $cache[ $key ];
+ return apply_filters('get_categories', $cache[$key], $r);
$where = 'cat_ID > 0';
$inclusions = '';