Changeset 3746

Show
Ignore:
Timestamp:
04/22/06 00:27:31 (3 years ago)
Author:
ryan
Message:

Don't texturize home. Props Mark Jaquith and David House. fixes #2381

Files:

Legend:

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

    r3557 r3746  
    6363function bloginfo($show='') { 
    6464    $info = get_bloginfo($show); 
    65     if ( ! (strstr($info, 'url') || strstr($info, 'directory')) ) { 
     65    if (!strstr($show, 'url') && //don't filter URLs 
     66        !strstr($show, 'directory') && 
     67        !strstr($show, 'home')) { 
    6668        $info = apply_filters('bloginfo', $info, $show); 
    6769        $info = convert_chars($info);