- Timestamp:
- 04/05/2018 06:34:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wp15.wordpress.net/public_html/content/mu-plugins/updates.php
r6579 r7039 10 10 11 11 namespace WP15\Updates; 12 defined( 'WPINC' ) ordie();12 defined( 'WPINC' ) || die(); 13 13 14 14 /* … … 21 21 * Auto update everything, even major Core releases, to minimize the maintenance burden. 22 22 */ 23 add_filter( 'allow_minor_auto_core_updates', '__return_true');24 add_filter( 'allow_major_auto_core_updates', '__return_true');25 add_filter( 'auto_update_plugin', '__return_true');26 add_filter( 'auto_update_theme', '__return_true');27 add_filter( 'auto_update_translation', '__return_true');23 add_filter( 'allow_minor_auto_core_updates', '__return_true' ); 24 add_filter( 'allow_major_auto_core_updates', '__return_true' ); 25 add_filter( 'auto_update_plugin', '__return_true' ); 26 add_filter( 'auto_update_theme', '__return_true' ); 27 add_filter( 'auto_update_translation', '__return_true' );
Note: See TracChangeset
for help on using the changeset viewer.