Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: allow_minor_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
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)
1519           if ( version_compare( $new_branch, $current_branch, '>' ) )
1520                return apply_filters( 'allow_major_auto_core_updates', $upgrade_major );
1521
1522           // If we're not sure, we don't want it
1523           return false;
1524      }
1525