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