Changeset 16984 for trunk/wp-admin/network/site-users.php
- Timestamp:
- 12/16/2010 07:13:01 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/network/site-users.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/site-users.php
r16983 r16984 25 25 add_contextual_help($current_screen, 26 26 '<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' . 27 '<p>' . __('<strong>Users</strong> This displays the users associated with this site. You can also change their role, reset their passowrd, or remove them from the site. Removing the user from the site does not remove the user from the network. ') . '</p>' .27 '<p>' . __('<strong>Users</strong> - This displays the users associated with this site. You can also change their role, reset their passowrd, or remove them from the site. Removing the user from the site does not remove the user from the network. ') . '</p>' . 28 28 '<p>' . __('See the contextual help on the next tab. ') . '</p>' . 29 29 '<p><strong>' . __('For more information:') . '</strong></p>' . … … 164 164 <h3 class="nav-tab-wrapper"> 165 165 <?php 166 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 167 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 166 $tabs = array( 167 'site-info' => array( 'label' => __( 'Info' ), 'url' => 'site-info.php' ), 168 'site-users' => array( 'label' => __( 'Users' ), 'url' => 'site-users.php' ), 169 'site-themes' => array( 'label' => __( 'Themes' ), 'url' => 'site-themes.php' ), 170 'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ), 171 ); 168 172 foreach ( $tabs as $tab_id => $tab ) { 169 173 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
Note: See TracChangeset
for help on using the changeset viewer.