Changeset 20266
- Timestamp:
- 03/23/2012 12:16:46 AM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize.php
r20263 r20266 64 64 return; 65 65 66 if ( ! $this->set_stylesheet() || isset( $_REQUEST['save '] ) )66 if ( ! $this->set_stylesheet() || isset( $_REQUEST['save_customize_controls'] ) ) 67 67 return; 68 68 … … 271 271 */ 272 272 public function admin_init() { 273 if ( isset( $_REQUEST['save '] ) )273 if ( isset( $_REQUEST['save_customize_controls'] ) ) 274 274 $this->save(); 275 275 -
trunk/wp-includes/customize-controls.php
r20263 r20266 45 45 </head> 46 46 <body class="wp-full-overlay"> 47 <form id="customize-controls" method="post" class="wrap wp-full-overlay-sidebar" target="_parent" action="<?php echo esc_url( add_query_arg( 'save ', '1', admin_url( 'themes.php' ) ) ); ?>">47 <form id="customize-controls" method="post" class="wrap wp-full-overlay-sidebar" target="_parent" action="<?php echo esc_url( add_query_arg( 'save_customize_controls', '1', admin_url( 'themes.php' ) ) ); ?>"> 48 48 <?php wp_nonce_field( 'customize_controls' ); ?> 49 49 <input type="hidden" name="customize" value="on" />
Note: See TracChangeset
for help on using the changeset viewer.