Upgrade: Lowercase the "s" in `remove_all_filters()`.

props afragen.
fixes #33173.
Built from https://develop.svn.wordpress.org/trunk@33487


git-svn-id: http://core.svn.wordpress.org/trunk@33454 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-07-29 14:57:25 +00:00
parent 97280576c0
commit dc4c2fa0bf
2 changed files with 2 additions and 2 deletions

View File

@ -1900,7 +1900,7 @@ class Language_Pack_Upgrader extends WP_Upgrader {
// Remove any existing upgrade filters from the plugin/theme upgraders #WP29425 & #WP29230 // Remove any existing upgrade filters from the plugin/theme upgraders #WP29425 & #WP29230
remove_all_filters( 'upgrader_pre_install' ); remove_all_filters( 'upgrader_pre_install' );
remove_all_filters( 'upgrader_clear_destination' ); remove_all_filters( 'upgrader_clear_destination' );
remove_all_filterS( 'upgrader_post_install' ); remove_all_filters( 'upgrader_post_install' );
remove_all_filters( 'upgrader_source_selection' ); remove_all_filters( 'upgrader_source_selection' );
add_filter( 'upgrader_source_selection', array( $this, 'check_package' ), 10, 2 ); add_filter( 'upgrader_source_selection', array( $this, 'check_package' ), 10, 2 );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-beta4-33486'; $wp_version = '4.3-beta4-33487';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.