summaryrefslogtreecommitdiffstats
path: root/wp-admin
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-08-03 18:45:51 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-08-03 18:45:51 +0000
commitb0f47f0925a7221e888c27fe552da05b7be06102 (patch)
treee1a32875265dc001167ac51414afd750cadc038b /wp-admin
parentbfac3e3ee9b23a2826caf83f96df036ac3918e49 (diff)
downloadwordpress-mu-b0f47f0925a7221e888c27fe552da05b7be06102.tar.gz
wordpress-mu-b0f47f0925a7221e888c27fe552da05b7be06102.tar.xz
wordpress-mu-b0f47f0925a7221e888c27fe552da05b7be06102.zip
Added "ban email domains" (#110)
Whitespace cleanup git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@719 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin')
-rw-r--r--wp-admin/wpmu-options.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index 7c85dd3..676667d 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -52,6 +52,12 @@ if (isset($_GET['updated'])) {
<?php _e('If you want to limit blog registrations to certain domains. Separate domains by spaces.') ?></td>
</tr>
<tr valign="top">
+ <th scope="row"><?php _e('Ban 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" />
+ <br />
+ <?php _e('If you want to ban certain email domains from blog registrations. Separate domains by spaces.') ?></td>
+ </tr>
+ <tr valign="top">
<th scope="row"><?php _e('Blog upload space:') ?></th>
<td><input name="blog_upload_space" type="text" id="blog_upload_space" value="<?php echo get_site_option('blog_upload_space', 10) ?>" size="3" /> MB
</tr>