You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
488 B

  1. <?php
  2. /**
  3. * WordPress Options Header.
  4. *
  5. * Displays updated message, if updated variable is part of the URL query.
  6. *
  7. * @package WordPress
  8. * @subpackage Administration
  9. */
  10. wp_reset_vars( array( 'action' ) );
  11. if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
  12. // For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect.
  13. add_settings_error('general', 'settings_updated', __('Settings saved.'), 'updated');
  14. }
  15. settings_errors();