wp_cache_update_rejected_strings()
No Hooks.
Return
null
. Nothing (null).
Usage
wp_cache_update_rejected_strings();
wp_cache_update_rejected_strings() wp cache update rejected strings code WPSCache 1.12.4
function wp_cache_update_rejected_strings() { global $cache_rejected_uri, $wp_cache_config_file, $valid_nonce; if ( isset($_REQUEST['wp_rejected_uri']) && $valid_nonce ) { $text = wp_cache_sanitize_value( str_replace( '\\\\', '\\', $_REQUEST['wp_rejected_uri'] ), $cache_rejected_uri ); wp_cache_replace_line('^ *\$cache_rejected_uri', "\$cache_rejected_uri = $text;", $wp_cache_config_file); } }