~canonical-sysadmins/wordpress/4.7.2

« back to all changes in this revision

Viewing changes to wp-admin/options-head.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
11
wp_reset_vars( array( 'action' ) );
 
12
 
 
13
if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
 
14
        // For backwards 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.'), 'updated');
 
16
}
 
17
 
 
18
settings_errors();