Fixed missing braces.
This commit is contained in:
parent
2b2345c763
commit
bc825f4cae
1 changed files with 1 additions and 0 deletions
|
@ -28,6 +28,7 @@ $wp_ffpc_uri = $_SERVER['REQUEST_URI'];
|
||||||
/* no cache for uri with query strings, things usually go bad that way */
|
/* no cache for uri with query strings, things usually go bad that way */
|
||||||
if ( isset($wp_ffpc_config['nocache_dyn']) && !empty($wp_ffpc_config['nocache_dyn']) && stripos($wp_ffpc_uri, '?') !== false ) {
|
if ( isset($wp_ffpc_config['nocache_dyn']) && !empty($wp_ffpc_config['nocache_dyn']) && stripos($wp_ffpc_uri, '?') !== false ) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/* no cache for pages starting with /wp- like WP admin */
|
/* no cache for pages starting with /wp- like WP admin */
|
||||||
if (stripos($wp_ffpc_uri, '/wp-') !== false)
|
if (stripos($wp_ffpc_uri, '/wp-') !== false)
|
||||||
|
|
Loading…
Reference in a new issue