summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.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-options.php
parent8a8560c1b75ce5cb9f3b86bf3cba19c6df5000ff (diff)
downloadwordpress-mu-98544ae17b359835fcb4654e77ca72a7774c9510.tar.gz
wordpress-mu-98544ae17b359835fcb4654e77ca72a7774c9510.tar.xz
wordpress-mu-98544ae17b359835fcb4654e77ca72a7774c9510.zip
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-options.php')
-rw-r--r--wp-admin/wpmu-options.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index fd59cf2..0903fda 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -60,9 +60,9 @@ if (isset($_GET['updated'])) {
</tr>
<tr valign="top">
<th scope="row"><?php _e('Banned Email Domains:') ?></th>
- <td><input name="banned_email_domains" type="text" id="banned_email_domains" style="width: 95%" value="<?php echo get_site_option('banned_email_domains') == '' ? '' : @implode( " ", get_site_option('banned_email_domains') ); ?>" size="45" />
+ <td><textarea name="banned_email_domains" id="banned_email_domains" cols='40' rows='5'><?php echo get_site_option('banned_email_domains') == '' ? '' : @implode( "\n", get_site_option('banned_email_domains') ); ?></textarea>
<br />
- <?php _e('If you want to ban certain email domains from blog registrations. Separate domains by spaces.') ?></td>
+ <?php _e('If you want to ban certain email domains from blog registrations. One domain per line.') ?></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e('Blog upload space:') ?></th>