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:
parent
91bb67b363
commit
09809cc917
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue