summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-12-18 15:52:12 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-12-18 15:52:12 +0000
commit01260e4e8108a64da02a79c1f6d9b3103bf55236 (patch)
tree84af68c241d28fb1baf062a554ba9df4a766ac98
parent0ad4b94b5dd2bdbac3314f7e2e8a8d9815935dfe (diff)
Site_admin option, was fixed on wordpress.com ages ago, but not merged.
(Thanks http://www.itdamager.com/2005/12/16/no-admin-for-you/ ) git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@473 7be80a69-a1ef-0310-a953-fb0f7c49ff36
-rw-r--r--wp-inst/wp-admin/wpmu-options.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-admin/wpmu-options.php b/wp-inst/wp-admin/wpmu-options.php
index 750add1..bded6ea 100644
--- a/wp-inst/wp-admin/wpmu-options.php
+++ b/wp-inst/wp-admin/wpmu-options.php
@@ -68,8 +68,8 @@ if (isset($_GET['updated'])) {
<legend><?php _e('Administration Settings') ?></legend>
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
<tr valign="top">
- <th scope="row"><?php _e('Super Users:') ?></th>
- <td><input name="super_users" type="text" id="super_users" style="width: 95%" value="<?php echo get_site_option( 'super_users', 'admin' ) ?>" size="45" />
+ <th scope="row"><?php _e('Site Admins:') ?></th>
+ <td><input name="site_admins" type="text" id="site_admins" style="width: 95%" value="<?php echo implode( " ", get_site_option( 'site_admins', array( 'admin' ) ) ) ?>" size="45" />
<br />
<?php _e('These users may login to the main blog and administer the site.') ?></td>
</tr>