From b323e4b9e636f31e802b56315f95d03c57501ded Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 13 Jan 2010 17:03:14 +0000 Subject: [PATCH] Typo fix. Props nacin. see #11644 git-svn-id: http://svn.automattic.com/wordpress/trunk@12718 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-permalink.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/options-permalink.php b/wp-admin/options-permalink.php index 9583f6a29..c4d2c4b79 100644 --- a/wp-admin/options-permalink.php +++ b/wp-admin/options-permalink.php @@ -92,7 +92,7 @@ if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) { $category_base = $_POST['category_base']; if (! empty($category_base) ) $category_base = preg_replace('#/+#', '/', '/' . $_POST['category_base']); - if ( is_miltisite() && !is_subdomain_install() && $category_base != '' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) { + if ( is_multisite() && !is_subdomain_install() && $category_base != '' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) { $category_base = '/blog' . $category_base; } $wp_rewrite->set_category_base($category_base);