Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: allow_dev_auto_core_updates

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1500                // Cannot update if we're retrying the same A to B update that caused a non-critical failure.
1501                // Some non-critical failures do allow retries, like download_failed.
1502                // 3.7.1 => 3.7.2 resulted in files_not_writable, if we are still on 3.7.1 and still trying to update to 3.7.2.
1503                if ( empty( $failure_data['retry'] ) && $wp_version == $failure_data['current'] && $offered_ver == $failure_data['attempted'] )
1504                     return false;
1505           }
1506
1507           // 3: 3.7-alpha-25000 -> 3.7-alpha-25678 -> 3.7-beta1 -> 3.7-beta2
1508           if ( $current_is_development_version ) {
1509                if ( ! apply_filters( 'allow_dev_auto_core_updates', $upgrade_dev ) )
1510                     return false;
1511                // else fall through to minor + major branches below
1512           }
1513
1514           // 4: Minor In-branch updates (3.7.0 -> 3.7.1 -> 3.7.2 -> 3.7.4)
1515           if ( $current_branch == $new_branch )
1516                return apply_filters( 'allow_minor_auto_core_updates', $upgrade_minor );
1517
1518           // 5: Major version updates (3.7.0 -> 3.8.0 -> 3.9.1)