From 548903b49d33b606cd87cadac848861ebd60cbd5 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 25 Jan 2008 01:59:06 +0000 Subject: [PATCH] Remove lingering bit of get_tags cache git-svn-id: https://develop.svn.wordpress.org/trunk@6655 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/category.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/wp-includes/category.php b/wp-includes/category.php index e49be2d8b7..193390dd07 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; }