Ticket #13238: 13238.2.diff
| File 13238.2.diff, 1.9 KB (added by PeteMall, 3 years ago) |
|---|
-
wp-admin/ms-themes.php
29 29 <form action="<?php echo esc_url( admin_url( 'ms-edit.php?action=updatethemes' ) ); ?>" method="post"> 30 30 <?php screen_icon(); ?> 31 31 <h2><?php _e( 'Network Themes' ) ?></h2> 32 <p><?php _e( ' Disable themes network-wide. You can enable themes on a site-by-site basis.' ) ?></p>32 <p><?php _e( 'Themes must be enabled before they appear on the <a href="themes.php">Themes Page</a>. Themes can be enabled network-wide here.' ) ?></p> 33 33 <table class="widefat"> 34 34 <thead> 35 35 <tr> 36 <th style="width:15%;text-align:center;"><?php _e( ' Active' ) ?></th>36 <th style="width:15%;text-align:center;"><?php _e( 'Enable Network-wide' ) ?></th> 37 37 <th style="width:25%;"><?php _e( 'Theme' ) ?></th> 38 38 <th style="width:10%;"><?php _e( 'Version' ) ?></th> 39 39 <th style="width:60%;"><?php _e( 'Description' ) ?></th> … … 80 80 <p> 81 81 <?php printf( __( 'Themes Installed: %d' ), $total_theme_count); ?> 82 82 <br /> 83 <?php printf( __( 'Themes Activated: %d' ), $activated_themes_count); ?>83 <?php printf( __( 'Themes Enabled: %d' ), $activated_themes_count); ?> 84 84 </p> 85 85 </div> 86 86 -
wp-admin/themes.php
44 44 45 45 require_once('./admin-header.php'); 46 46 if ( is_multisite() && current_user_can('edit_themes') ) { 47 ?><div id="message0" class="updated"><p><?php _e('Administrator: new themes must be activated in the <a href="ms-themes.php"> Themes Admin</a> page before they appear here.'); ?></p></div><?php47 ?><div id="message0" class="updated"><p><?php _e('Administrator: new themes must be activated in the <a href="ms-themes.php">Network Themes</a> page before they appear here.'); ?></p></div><?php 48 48 } 49 49 ?> 50 50
