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

git-svn-id: http://svn.automattic.com/wordpress/trunk@6153 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2007-09-22 06:11:48 +00:00
parent c005340430
commit 0fb4233fdf

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