summaryrefslogtreecommitdiffstats
path: root/system/core/Output.php
diff options
context:
space:
mode:
authorStefano Mazzega <stefano.mazzega@gmail.com>2014-12-03 12:10:13 +0100
committerStefano Mazzega <stefano.mazzega@gmail.com>2014-12-03 12:10:13 +0100
commit6d61a058611b87043b25849fc144c256dbd79323 (patch)
tree6628a8bbe876af3da27754bba781ebb5d71be53e /system/core/Output.php
parentac41ca63f7e7f9ce24a2c2f023e8e648c8a56634 (diff)
add querystring to page caching. #2349
Diffstat (limited to 'system/core/Output.php')
-rw-r--r--system/core/Output.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/Output.php b/system/core/Output.php
index 4743690c9..58a9d896b 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -565,7 +565,7 @@ class CI_Output {
.$CI->uri->uri_string();
// append querystring
- $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
+ $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
$cache_path .= md5($uri);
@@ -652,7 +652,7 @@ 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
- $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
+ $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
$filepath = $cache_path.md5($uri);
@@ -734,7 +734,7 @@ class CI_Output {
}
// append querystring
- $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
+ $uri .= (empty($_SERVER['QUERY_STRING'])) ? '' : '?' . $_SERVER['QUERY_STRING'];
$cache_path .= md5($CI->config->item('base_url').$CI->config->item('index_page').$uri);