Changeset 28509
- Timestamp:
- 05/19/2014 05:44:49 AM (11 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r28170 r28509 88 88 * @param array $args 89 89 */ 90 function __construct( $manager, $id, $args = array() ) {90 public function __construct( $manager, $id, $args = array() ) { 91 91 $keys = array_keys( get_object_vars( $this ) ); 92 92 foreach ( $keys as $key ) { -
trunk/src/wp-includes/class-wp-customize-manager.php
r28124 r28509 191 191 * @since 3.4.0 192 192 */ 193 function after_setup_theme() {193 public function after_setup_theme() { 194 194 if ( ! $this->doing_ajax() && ! validate_current_theme() ) { 195 195 wp_redirect( 'themes.php?broken=true' ); -
trunk/src/wp-includes/class-wp-customize-section.php
r27902 r28509 94 94 * @param array $args Section arguments. 95 95 */ 96 function __construct( $manager, $id, $args = array() ) {96 public function __construct( $manager, $id, $args = array() ) { 97 97 $keys = array_keys( get_class_vars( __CLASS__ ) ); 98 98 foreach ( $keys as $key ) { -
trunk/src/wp-includes/class-wp-customize-setting.php
r28319 r28509 76 76 * @return WP_Customize_Setting $setting 77 77 */ 78 function __construct( $manager, $id, $args = array() ) {78 public function __construct( $manager, $id, $args = array() ) { 79 79 $keys = array_keys( get_class_vars( __CLASS__ ) ); 80 80 foreach ( $keys as $key ) {
Note: See TracChangeset
for help on using the changeset viewer.