summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-edit.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-26 16:30:16 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-26 16:30:16 +0000
commit98544ae17b359835fcb4654e77ca72a7774c9510 (patch)
tree251a2973736145ee46a566b971e2ec75cbe9f5c9 /wp-admin/wpmu-edit.php
parent8a8560c1b75ce5cb9f3b86bf3cba19c6df5000ff (diff)
Make banned domain list into a textarea
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@869 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-edit.php')
-rw-r--r--wp-admin/wpmu-edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/wpmu-edit.php b/wp-admin/wpmu-edit.php
index f2a308b..e0168e6 100644
--- a/wp-admin/wpmu-edit.php
+++ b/wp-admin/wpmu-edit.php
@@ -24,7 +24,7 @@ switch( $_REQUEST[ 'action' ] ) {
update_site_option( "limited_email_domains", '' );
}
if( $_POST[ 'banned_email_domains' ] != '' ) {
- update_site_option( "banned_email_domains", split( ' ', stripslashes($_POST[ 'banned_email_domains' ]) ) );
+ update_site_option( "banned_email_domains", split( "\n", stripslashes($_POST[ 'banned_email_domains' ]) ) );
} else {
update_site_option( "banned_email_domains", '' );
}