89767559 by Jeff Balicki

fp

1 parent 692b0e7b
......@@ -58,11 +58,7 @@ define('ALLOW_UNFILTERED_UPLOADS', true);
define( 'DISALLOW_FILE_MODS', true );
define( 'AUTOMATIC_UPDATER_DISABLED', true );
define( 'WP_AUTO_UPDATE_CORE', false );
add_filter( 'auto_core_update_send_email', '__return_false' );
add_filter( 'auto_update_plugin', '__return_false' );
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter( 'auto_update_theme', '__return_false' );
add_filter('pre_site_transient_update_themes','remove_core_updates');
/**#@+
* Authentication Unique Keys and Salts.
......
......@@ -8,6 +8,11 @@
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
add_filter( 'auto_core_update_send_email', '__return_false' );
add_filter( 'auto_update_plugin', '__return_false' );
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter( 'auto_update_theme', '__return_false' );
add_filter('pre_site_transient_update_themes','remove_core_updates');
/**
......