Remove lingering bit of get_tags cache

git-svn-id: https://develop.svn.wordpress.org/trunk@6655 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-01-25 01:59:06 +00:00
parent 3b55c522d6
commit 548903b49d

View File

@ -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;
}