GET parameters should fall through cache

This commit is contained in:
Will Rossiter 2015-03-10 16:17:43 +13:00
parent 6d84b1e049
commit 4504fd0900
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ if (
&& count(array_diff(array_keys($_GET), array('url', 'cacheSubdir'))) == 0
// Request is not POST (which would have to be handled dynamically)
&& count($_POST) == 0
&& count($_GET) <= 1
) {
// Define system paths (copied from Core.php)
if(!defined('BASE_PATH')) {