#38841 closed defect (bug) (invalid)
WP_AUTO_UPDATE_CORE: 4.6.1 discrepancy between documentation and sourcecode
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 4.6.1 |
| Component: | Upgrade/Install | Keywords: | |
| Focuses: | Cc: |
Description
https://codex.wordpress.org/Configuring_Automatic_Background_Updates says
By default, every site has automatic updates enabled for minor core releases and translation files.
(the next sentence does not apply since 4.6.1 is not a development version)
But the source code (class-core-updater.php line 245) says:
Defaults:
$upgrade_dev = true;
$upgrade_minor = true;
$upgrade_major = false;
Change History (3)
Note: See
TracTickets for help on using
tickets.
Hi @wolfgang61, welcome to Trac! Thanks for the report.
Could you clarify where the discrepancy is? As far as I can see, the defaults in
class-core-updater.phpmatch what the Codex says.