Changeset 3117

Show
Ignore:
Timestamp:
11/16/05 23:54:39 (3 years ago)
Author:
ryan
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/template-functions-general.php

    r3037 r3117  
    6363function bloginfo($show='') { 
    6464    $info = get_bloginfo($show); 
    65     if ( ! strstr($info, 'url') ) { 
     65    if ( ! (strstr($info, 'url') || strstr($info, 'directory')) ) { 
    6666        $info = apply_filters('bloginfo', $info, $show); 
    6767        $info = convert_chars($info);