From 60f95452a473ef188eaaccf1586aca678cc33452 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Wed, 18 Mar 2015 22:06:17 +0000 Subject: [PATCH] Don't try to call `wp_clean_plugins_cache();` twice in `wp_clean_update_cache()`. props TobiasBg. fixes #31503. git-svn-id: https://develop.svn.wordpress.org/trunk@31825 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/update.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php index b19b27c87f..98d529ec35 100644 --- a/src/wp-includes/update.php +++ b/src/wp-includes/update.php @@ -659,7 +659,6 @@ function wp_clean_update_cache() { } else { delete_site_transient( 'update_plugins' ); } - wp_clean_plugins_cache(); wp_clean_themes_cache(); delete_site_transient( 'update_core' ); }