summaryrefslogtreecommitdiffstats
path: root/system/core/Output.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-12-03 19:15:56 +0100
committerAndrey Andreev <narf@devilix.net>2014-12-03 19:15:56 +0100
commit16153d811c3484b9211c3b0079d1446a992bad1c (patch)
treebc9a6f280b50e024047fd843566748d887e79a9e /system/core/Output.php
parentd51d92af6761f30dd459c93fdb9f62d2d7b30a98 (diff)
parentaf14e26e72ed484b2388b88bf8df245c2490a387 (diff)
Merge pull request #3384 from ster/develop
issue #2349 : Page caching with querystring
Diffstat (limited to 'system/core/Output.php')
-rw-r--r--system/core/Output.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/system/core/Output.php b/system/core/Output.php
index 8b7d6efbd..081423c99 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -564,6 +564,9 @@ class CI_Output {
.$CI->config->item('index_page')
.$CI->uri->uri_string();
+ // append querystring
+ empty($_SERVER['QUERY_STRING']) OR $uri .= '?'.$_SERVER['QUERY_STRING'];
+
$cache_path .= md5($uri);
if ( ! $fp = @fopen($cache_path, 'w+b'))
@@ -648,6 +651,9 @@ class CI_Output {
// Build the file path. The file name is an MD5 hash of the full URI
$uri = $CFG->item('base_url').$CFG->item('index_page').$URI->uri_string;
+ // append querystring
+ empty($_SERVER['QUERY_STRING']) OR $uri .= '?'.$_SERVER['QUERY_STRING'];
+
$filepath = $cache_path.md5($uri);
if ( ! file_exists($filepath) OR ! $fp = @fopen($filepath, 'rb'))
@@ -727,6 +733,9 @@ class CI_Output {
$uri = $CI->uri->uri_string();
}
+ // append querystring
+ empty($_SERVER['QUERY_STRING']) OR $uri .= '?'.$_SERVER['QUERY_STRING'];
+
$cache_path .= md5($CI->config->item('base_url').$CI->config->item('index_page').$uri);
if ( ! @unlink($cache_path))