From d96c893db90af8f0709ee2486e5177bf4593c1b8 Mon Sep 17 00:00:00 2001 From: donncha Date: Wed, 7 May 2008 14:32:13 +0000 Subject: AUTOSAVE_INTERVAL, fixes #617 and #610, props hanifb git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1267 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-settings.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'wp-settings.php') diff --git a/wp-settings.php b/wp-settings.php index 59d0d1e..7e3bd7c 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -407,6 +407,14 @@ if ( !defined('SITECOOKIEPATH') ) */ if ( !defined('COOKIE_DOMAIN') ) define('COOKIE_DOMAIN', '.' . $current_site->domain); + +/** + * 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'); -- cgit