Don't run stylesheet directory URI through filters. fixes #1890
git-svn-id: https://develop.svn.wordpress.org/trunk@3117 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a6ff5a77a6
commit
1c2e933d90
@ -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
Block a user