summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-10 10:18:57 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-10 10:18:57 +0000
commitaf5a0181bdaaad674d8e3bacb28d787a19eaefc0 (patch)
tree10c7c17290c0e2da19645fadc721c131b27800c7 /wp-admin/wpmu-options.php
parent4e1840567151765e4beeb6f9b748033a4137f7d2 (diff)
downloadwordpress-mu-af5a0181bdaaad674d8e3bacb28d787a19eaefc0.tar.gz
wordpress-mu-af5a0181bdaaad674d8e3bacb28d787a19eaefc0.tar.xz
wordpress-mu-af5a0181bdaaad674d8e3bacb28d787a19eaefc0.zip
Fix stupid typos, fixes #437, thanks JeremyVisser
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1064 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index b7bbdc8..9025e99 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -40,10 +40,10 @@ if (isset($_GET['updated'])) {
if( !get_site_option('registration') )
update_site_option( 'registration', 'all' );
?>
- <td><input name="registration1" type="radio" id="registration1" value='none' <?php echo get_site_option('registration') == 'none' ? 'checked' : ''; ?> /> Disabled<br />
- <input name="registration2" type="radio" id="registration2" value='all' <?php echo get_site_option('registration') == 'all' ? 'checked' : ''; ?> /> Enabled for all. Blogs and user accounts can be created.<br />
- <input name="registration3" type="radio" id="registration3" value='user' <?php echo get_site_option('registration') == 'user' ? 'checked' : ''; ?> /> Enabled for users only. Only user account can be created.<br />
- <input name="registration4" type="radio" id="registration4" value='blog' <?php echo get_site_option('registration') == 'blog' ? 'checked' : ''; ?> /> Enabled for blogs only. Only logged in users can create new blogs.<br />
+ <td><input name="registration" type="radio" id="registration1" value='none' <?php echo get_site_option('registration') == 'none' ? 'checked' : ''; ?> /> Disabled<br />
+ <input name="registration" type="radio" id="registration2" value='all' <?php echo get_site_option('registration') == 'all' ? 'checked' : ''; ?> /> Enabled for all. Blogs and user accounts can be created.<br />
+ <input name="registration" type="radio" id="registration3" value='user' <?php echo get_site_option('registration') == 'user' ? 'checked' : ''; ?> /> Enabled for users only. Only user account can be created.<br />
+ <input name="registration" type="radio" id="registration4" value='blog' <?php echo get_site_option('registration') == 'blog' ? 'checked' : ''; ?> /> Enabled for blogs only. Only logged in users can create new blogs.<br />
<?php _e('Disable or enable registration and who or what can be registered. (Default=all)') ?></td>
</tr>
<tr valign="top">