Make WordPress Core


Ignore:
Timestamp:
12/16/2010 07:13:01 AM (15 years ago)
Author:
nacin
Message:

Network Admin: Rename Options to Settings. Kick the tab to the end as well. see #15314.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network/site-themes.php

    r16982 r16984  
    126126<h3 class="nav-tab-wrapper">
    127127<?php
    128 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'),  'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'),
    129               'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'),  'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php'));
     128$tabs = array(
     129    'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
     130    'site-users'    => array( 'label' => __( 'Users' ),    'url' => 'site-users.php'    ),
     131    'site-themes'   => array( 'label' => __( 'Themes' ),   'url' => 'site-themes.php'   ),
     132    'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
     133);
    130134foreach ( $tabs as $tab_id => $tab ) {
    131135    $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
Note: See TracChangeset for help on using the changeset viewer.