Confirm delete_site_option() exists before calling it during an update.

This function won't yet exist when updating from 2.7 [sic].

Merges [25893] to the 3.7 branch.
fixes #25682.


git-svn-id: https://develop.svn.wordpress.org/branches/3.7@25894 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-10-24 18:20:53 +00:00
parent bb16d6452f
commit 43b2d44959

View File

@ -894,7 +894,8 @@ function update_core($from, $to) {
do_action( '_core_updated_successfully', $wp_version );
// Clear the option that blocks auto updates after failures, now that we've been successful.
delete_site_option( 'auto_core_update_failed' );
if ( function_exists( 'delete_site_option' ) )
delete_site_option( 'auto_core_update_failed' );
return $wp_version;
}