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:
Ryan Boren 2005-11-16 23:54:39 +00:00
parent a6ff5a77a6
commit 1c2e933d90

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