wp/wp-admin/options-head.php
changeset 21 48c4eec2b7e6
parent 16 a86126ab1dd4
child 22 8c2e4d02f4ef
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
     6  *
     6  *
     7  * @package WordPress
     7  * @package WordPress
     8  * @subpackage Administration
     8  * @subpackage Administration
     9  */
     9  */
    10 
    10 
    11 wp_reset_vars( array( 'action' ) );
    11 $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
    12 
    12 
    13 if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
    13 if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
    14 	// For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect.
    14 	// For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect.
    15 	add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' );
    15 	add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' );
    16 }
    16 }