Move define of AUTOSAVE_INTERVAL to wp-settings so that it is available earlier. Props simonwheatley. fixes #6668 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@7664 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2e2afe0707
commit
134476c652
@ -1,8 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
if ( !defined( 'AUTOSAVE_INTERVAL' ) )
|
|
||||||
define( 'AUTOSAVE_INTERVAL', 60 );
|
|
||||||
|
|
||||||
require_once(ABSPATH . 'wp-admin/includes/bookmark.php');
|
require_once(ABSPATH . 'wp-admin/includes/bookmark.php');
|
||||||
require_once(ABSPATH . 'wp-admin/includes/comment.php');
|
require_once(ABSPATH . 'wp-admin/includes/comment.php');
|
||||||
require_once(ABSPATH . 'wp-admin/includes/file.php');
|
require_once(ABSPATH . 'wp-admin/includes/file.php');
|
||||||
|
@ -331,6 +331,14 @@ if ( !defined('SITECOOKIEPATH') )
|
|||||||
if ( !defined('COOKIE_DOMAIN') )
|
if ( !defined('COOKIE_DOMAIN') )
|
||||||
define('COOKIE_DOMAIN', false);
|
define('COOKIE_DOMAIN', false);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* It is possible to define this in wp-config.php
|
||||||
|
* @since 2.5.0
|
||||||
|
*/
|
||||||
|
if ( !defined( 'AUTOSAVE_INTERVAL' ) )
|
||||||
|
define( 'AUTOSAVE_INTERVAL', 60 );
|
||||||
|
|
||||||
|
|
||||||
require (ABSPATH . WPINC . '/vars.php');
|
require (ABSPATH . WPINC . '/vars.php');
|
||||||
|
|
||||||
// Check for hacks file if the option is enabled
|
// Check for hacks file if the option is enabled
|
||||||
|
Loading…
Reference in New Issue
Block a user