2008-08-14 08:30:38 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WordPress Options Header.
|
|
|
|
*
|
2013-03-01 18:14:09 +01:00
|
|
|
* Displays updated message, if updated variable is part of the URL query.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2013-02-16 19:28:41 +01:00
|
|
|
wp_reset_vars( array( 'action' ) );
|
2004-04-11 10:15:10 +02:00
|
|
|
|
2010-12-03 11:59:20 +01:00
|
|
|
if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
|
|
|
|
// For backwards 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');
|
|
|
|
}
|
|
|
|
|
2010-02-17 18:50:42 +01:00
|
|
|
settings_errors();
|