Add tag_base to list of untrailingslashed options, and standardize the unslashing. Prevents /mytags//tagname/

git-svn-id: https://develop.svn.wordpress.org/trunk@6153 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-09-22 06:11:48 +00:00
parent 381dc189dd
commit 1c934d962c
1 changed files with 2 additions and 2 deletions

View File

@ -218,8 +218,8 @@ function get_option($setting) {
if ( 'home' == $setting && '' == $value )
return get_option('siteurl');
if ( 'siteurl' == $setting || 'home' == $setting || 'category_base' == $setting )
$value = preg_replace('|/+$|', '', $value);
if ( in_array($setting, array('siteurl', 'home', 'category_base', 'tag_base')) )
$value = untrailingslashit($value);
return apply_filters( 'option_' . $setting, maybe_unserialize($value) );
}