Make WordPress Core


Ignore:
Timestamp:
04/17/2012 08:49:39 PM (13 years ago)
Author:
koopersmith
Message:

Theme Customizer: Display 'Save and Activate' when switching themes. Add and properties to the WP_Customize class. see #19910.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/customize-controls.php

    r20476 r20495  
    8282        <div id="customize-footer-actions" class="customize-section wp-full-overlay-footer">
    8383            <?php
    84             submit_button( __( 'Save' ), 'primary', 'save', false );
     84            $save_text = $this->get_stylesheet() == $this->original_stylesheet ? __('Save') : __('Save and Activate');
     85            submit_button( $save_text, 'primary', 'save', false );
    8586            ?>
    8687            <a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>">
Note: See TracChangeset for help on using the changeset viewer.