mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Send nocache_headers() in the admin earlier, on the DB upgrade page. Prevents a potential redirect loop reproduced in Chrome from heavy caching of headers. props mdawaffe. see #21745.
git-svn-id: http://core.svn.wordpress.org/trunk@21913 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bf3c8017a8
commit
bee6374953
@ -29,6 +29,8 @@ if ( isset($_GET['import']) && !defined('WP_LOAD_IMPORTERS') )
|
|||||||
|
|
||||||
require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
|
require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
|
||||||
|
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
if ( get_option('db_upgraded') ) {
|
if ( get_option('db_upgraded') ) {
|
||||||
flush_rewrite_rules();
|
flush_rewrite_rules();
|
||||||
update_option( 'db_upgraded', false );
|
update_option( 'db_upgraded', false );
|
||||||
@ -66,8 +68,6 @@ require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
|||||||
|
|
||||||
auth_redirect();
|
auth_redirect();
|
||||||
|
|
||||||
nocache_headers();
|
|
||||||
|
|
||||||
// Schedule trash collection
|
// Schedule trash collection
|
||||||
if ( !wp_next_scheduled('wp_scheduled_delete') && !defined('WP_INSTALLING') )
|
if ( !wp_next_scheduled('wp_scheduled_delete') && !defined('WP_INSTALLING') )
|
||||||
wp_schedule_event(time(), 'daily', 'wp_scheduled_delete');
|
wp_schedule_event(time(), 'daily', 'wp_scheduled_delete');
|
||||||
|
@ -17,6 +17,8 @@ define( 'WP_INSTALLING', true );
|
|||||||
/** Load WordPress Bootstrap */
|
/** Load WordPress Bootstrap */
|
||||||
require( '../wp-load.php' );
|
require( '../wp-load.php' );
|
||||||
|
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
timer_start();
|
timer_start();
|
||||||
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user