Changeset 3746
- Timestamp:
- 04/22/06 00:27:31 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/template-functions-general.php
r3557 r3746 63 63 function bloginfo($show='') { 64 64 $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')) { 66 68 $info = apply_filters('bloginfo', $info, $show); 67 69 $info = convert_chars($info);
