Ticket #15593: 15593.diff
File 15593.diff, 3.3 KB (added by , 14 years ago) |
---|
-
wp-admin/network/site-info.php
82 82 <?php 83 83 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 84 84 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 85 $tabs = apply_filters( 'edit_site_tabs', $tabs ); 85 86 foreach ( $tabs as $tab_id => $tab ) { 86 87 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : ''; 87 88 echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>'; -
wp-admin/network/site-options.php
70 70 <?php 71 71 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 72 72 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 73 $tabs = apply_filters( 'edit_site_tabs', $tabs ); 73 74 foreach ( $tabs as $tab_id => $tab ) { 74 75 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : ''; 75 76 echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>'; -
wp-admin/network/site-users.php
155 155 <?php 156 156 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 157 157 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 158 $tabs = apply_filters( 'edit_site_tabs', $tabs ); 158 159 foreach ( $tabs as $tab_id => $tab ) { 159 160 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : ''; 160 161 echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>'; -
wp-admin/network/site-themes.php
105 105 <?php 106 106 $tabs = array( 'site-info' => array( 'label' => __('Info'), 'url' => 'site-info.php'), 'site-options' => array( 'label' => __('Options'), 'url' => 'site-options.php'), 107 107 'site-users' => array( 'label' => __('Users'), 'url' => 'site-users.php'), 'site-themes' => array( 'label' => __('Themes'), 'url' => 'site-themes.php')); 108 $tabs = apply_filters( 'edit_site_tabs', $tabs ); 108 109 foreach ( $tabs as $tab_id => $tab ) { 109 110 $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : ''; 110 111 echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';