mirror of
git://develop.git.wordpress.org/
synced 2025-04-06 21:23:29 +02:00
Upgrade: Fix the disable_autoupdate flag logic.
In #50824 support was added for a package to include a disable_autoupdate flag to indicate that the plugin/theme should not be auto-updated even if a user had opted-in via the WP-Admin UI. However, the logic implementing the flag was inverted. This commit repairs the logic. If a package has disable_autoupdate set, then it should not be auto-updated. Props amisiewicz. Fixes #52796. git-svn-id: https://develop.svn.wordpress.org/trunk@58285 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
85015659cf
commit
bcbb31d98a
@ -233,7 +233,7 @@ class WP_Automatic_Updater {
|
||||
|
||||
// If the `disable_autoupdate` flag is set, override any user-choice, but allow filters.
|
||||
if ( ! empty( $item->disable_autoupdate ) ) {
|
||||
$update = $item->disable_autoupdate;
|
||||
$update = false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user