Changeset 26767 for trunk/src/wp-admin/themes.php
- Timestamp:
- 12/07/2013 03:10:44 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/themes.php
r26759 r26767 92 92 $themes = wp_prepare_themes_for_js( array( wp_get_theme() ) ); 93 93 } 94 wp_reset_vars( array( 'theme', 'search' ) ); 94 95 95 96 wp_localize_script( 'theme', '_wpThemeSettings', array( … … 99 100 'installURI' => ( ! is_multisite() && current_user_can( 'install_themes' ) ) ? admin_url( 'theme-install.php' ) : null, 100 101 'confirmDelete' => __( "Are you sure you want to delete this theme?\n\nClick 'Cancel' to go back, 'OK' to confirm the delete." ), 101 'root' => admin_url( 'themes.php' ), 102 'extraRoutes' => '', 102 'root' => parse_url( admin_url( 'themes.php' ), PHP_URL_PATH ), 103 'theme' => esc_html( $theme ), 104 'search' => esc_html( $search ), 105 103 106 ), 104 107 'l10n' => array( … … 228 231 </div> 229 232 </div> 233 <div class="theme-overlay"></div> 230 234 231 235 <?php
Note: See TracChangeset
for help on using the changeset viewer.