Remove lingering bit of get_tags cache

git-svn-id: http://svn.automattic.com/wordpress/trunk@6655 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-01-25 01:59:06 +00:00
parent e5c94063b0
commit 6f7d120d5b
1 changed files with 0 additions and 2 deletions

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