summaryrefslogtreecommitdiffstats
path: root/wp-admin
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-18 15:29:05 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-18 15:29:05 +0000
commitfa6853a04c72e7b6970daf7d4241571626e4cfc7 (patch)
treef7afc76026e4145ed6e066eab44a94b65e587da1 /wp-admin
parentd9945de5b286eb95c70af589b2228e7a412811f0 (diff)
downloadwordpress-mu-fa6853a04c72e7b6970daf7d4241571626e4cfc7.tar.gz
wordpress-mu-fa6853a04c72e7b6970daf7d4241571626e4cfc7.tar.xz
wordpress-mu-fa6853a04c72e7b6970daf7d4241571626e4cfc7.zip
Minor changes
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@758 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin')
-rw-r--r--wp-admin/wpmu-options.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index ee5d8fa..fd59cf2 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -16,7 +16,8 @@ if (isset($_GET['updated'])) {
?>
<div class="wrap">
<h2><?php _e('Site Options') ?></h2>
- <form name="form1" method="post" action="wpmu-edit.php?action=siteoptions">
+ <form name="form1" method="POST" action="wpmu-edit.php">
+ <input type='hidden' name='action' value='siteoptions'>
<?php wp_nonce_field( "siteoptions" ); ?>
<fieldset class="options">
<legend><?php _e('Operational Settings <em>(These settings cannot be modified by blog owners)</em>') ?></legend>
@@ -58,7 +59,7 @@ 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>
+ <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" />
<br />
<?php _e('If you want to ban certain email domains from blog registrations. Separate domains by spaces.') ?></td>