From af1bafa67bd0965cd14063ae7c7cf662e64842cf Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 28 Oct 2010 05:22:45 +0000 Subject: [PATCH] Remove unnecessary wp_cache_delete calls. props shidouhikari, fixes #14080. git-svn-id: https://develop.svn.wordpress.org/trunk@16029 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index a17a83b08f..2eebafe815 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1361,7 +1361,6 @@ function set_theme_mod( $name, $value ) { $theme = get_option( 'stylesheet' ); update_option( "theme_mods_$theme", $mods ); - wp_cache_delete( "theme_mods_$theme", 'options' ); } /** @@ -1388,7 +1387,6 @@ function remove_theme_mod( $name ) { $theme = get_option( 'stylesheet' ); update_option( "theme_mods_$theme", $mods ); - wp_cache_delete( "theme_mods_$theme", 'options' ); } /**