Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Pry <JPry@users.noreply.github.com>2015-07-06 02:24:53 +0300
committerJeremy Pry <JPry@users.noreply.github.com>2015-07-06 02:24:53 +0300
commit76ee3a6ac8bae9df072bf847afb662ed592c6a18 (patch)
treed7f241c855cc8f6e9cd2d4dfaeb7fb2a830eb37e /wordpress-nginx
parent28818e052c3201285793252889b3a71867f0c489 (diff)
Move update defines above wp-settings include
Diffstat (limited to 'wordpress-nginx')
-rw-r--r--wordpress-nginx/roles/wordpress/templates/wp-config.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/wordpress-nginx/roles/wordpress/templates/wp-config.php b/wordpress-nginx/roles/wordpress/templates/wp-config.php
index a570c72..b8ef434 100644
--- a/wordpress-nginx/roles/wordpress/templates/wp-config.php
+++ b/wordpress-nginx/roles/wordpress/templates/wp-config.php
@@ -74,6 +74,12 @@ define('WPLANG', '');
*/
define('WP_DEBUG', false);
+/** Disable Automatic Updates Completely */
+define( 'AUTOMATIC_UPDATER_DISABLED', {{auto_up_disable}} );
+
+/** Define AUTOMATIC Updates for Components. */
+define( 'WP_AUTO_UPDATE_CORE', {{core_update_level}} );
+
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
@@ -82,9 +88,3 @@ if ( !defined('ABSPATH') )
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
-
-/** Disable Automatic Updates Completely */
-define( 'AUTOMATIC_UPDATER_DISABLED', {{auto_up_disable}} );
-
-/** Define AUTOMATIC Updates for Components. */
-define( 'WP_AUTO_UPDATE_CORE', {{core_update_level}} );