summaryrefslogtreecommitdiffstats
path: root/wp-includes
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-08-06 14:51:05 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-08-06 14:51:05 +0000
commit776c594e0937041a457138c2c4fd49eabe8d3be3 (patch)
tree1de55832c24a3cb5448795b0718b5d83441fa80f /wp-includes
parentebf0fb5db5e2eaa2e781c8a4829eb268d2fce608 (diff)
downloadwordpress-mu-776c594e0937041a457138c2c4fd49eabe8d3be3.tar.gz
wordpress-mu-776c594e0937041a457138c2c4fd49eabe8d3be3.tar.xz
wordpress-mu-776c594e0937041a457138c2c4fd49eabe8d3be3.zip
Don't double slash the blog title, fixes #398, props Vimm
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1015 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes')
-rw-r--r--wp-includes/wpmu-functions.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php
index fd7c016..f868241 100644
--- a/wp-includes/wpmu-functions.php
+++ b/wp-includes/wpmu-functions.php
@@ -1222,7 +1222,6 @@ function wpmu_create_user( $user_name, $password, $email) {
function wpmu_create_blog($domain, $path, $title, $user_id, $meta = '', $site_id = 1) {
$domain = addslashes( $domain );
- $title = addslashes( $title );
$user_id = (int) $user_id;
if( empty($path) )