Remove unnecessary wp_cache_delete calls. props shidouhikari, fixes #14080.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a07ec69bce
commit
16d0878544
|
@ -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' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue