From 6f7d120d5b5314ec51f3bdd2d1e2365496812e34 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 25 Jan 2008 01:59:06 +0000 Subject: [PATCH] Remove lingering bit of get_tags cache git-svn-id: http://svn.automattic.com/wordpress/trunk@6655 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/wp-includes/category.php b/wp-includes/category.php index e49be2d8b..193390dd0 100644 --- a/wp-includes/category.php +++ b/wp-includes/category.php @@ -132,8 +132,6 @@ function &get_tags($args = '') { if ( empty($tags) ) return array(); - $cache[ $key ] = $tags; - $tags = apply_filters('get_tags', $tags, $args); return $tags; }