X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/699231ae09f7057a4d0000cdf32e50a3df6a04ca..refs/heads/pristine:/wp-admin/options-head.php diff --git a/wp-admin/options-head.php b/wp-admin/options-head.php index 965615fd..bee3ae7e 100644 --- a/wp-admin/options-head.php +++ b/wp-admin/options-head.php @@ -2,15 +2,17 @@ /** * WordPress Options Header. * - * Resets variables: 'action', 'standalone', and 'option_group_id'. Displays - * updated message, if updated variable is part of the URL query. + * Displays updated message, if updated variable is part of the URL query. * * @package WordPress * @subpackage Administration */ -wp_reset_vars(array('action', 'standalone', 'option_group_id')); +wp_reset_vars( array( 'action' ) ); -settings_errors(); +if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) { + // For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect. + add_settings_error('general', 'settings_updated', __('Settings saved.'), 'updated'); +} -?> \ No newline at end of file +settings_errors();