stripslashes() the site name before passing to populate_network(), not in it. We should always expect unslashed data. reverts [14754]. fixes #13448

git-svn-id: https://develop.svn.wordpress.org/trunk@14845 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith
2010-05-24 19:18:30 +00:00
parent 56e498c517
commit 2a90aeb2a6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -689,7 +689,7 @@ Thanks!
--The Team @ SITE_NAME' );
$sitemeta = array(
'site_name' => stripslashes($site_name),
'site_name' => $site_name,
'admin_email' => $site_user->user_email,
'admin_user_id' => $site_user->ID,
'registration' => 'none',