Don't run stylesheet directory URI through filters. fixes #1890

git-svn-id: http://svn.automattic.com/wordpress/trunk@3117 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-11-16 23:54:39 +00:00
parent 91bb67b363
commit 09809cc917

View File

@ -62,7 +62,7 @@ function wp_meta() {
function bloginfo($show='') {
$info = get_bloginfo($show);
if ( ! strstr($info, 'url') ) {
if ( ! (strstr($info, 'url') || strstr($info, 'directory')) ) {
$info = apply_filters('bloginfo', $info, $show);
$info = convert_chars($info);
}