summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-07-15 16:17:18 +0200
committerAndrey Andreev <narf@devilix.net>2015-07-15 16:17:18 +0200
commit298e0058b9d8e576cb7f017ade57c794060c3e98 (patch)
tree0529c1fd867c7d5a1f2a60739946f52e748bf3d6
parent148c02ee988a9082aab053b992bd73bbcf6e30ca (diff)
[ci skip] Revert styleguide violations from PR #3828
-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 4aed62a86..76c1329d2 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -556,7 +556,7 @@ class CI_Output {
.$CI->config->item('index_page')
.$CI->uri->uri_string();
- if (($cache_query_string = $CI->config->item('cache_query_string')) && !empty($_SERVER['QUERY_STRING']))
+ if (($cache_query_string = $CI->config->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
{
if (is_array($cache_query_string))
{
@@ -653,7 +653,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;
- if (($cache_query_string = $CFG->item('cache_query_string')) && !empty($_SERVER['QUERY_STRING']))
+ if (($cache_query_string = $CFG->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
{
if (is_array($cache_query_string))
{
@@ -743,7 +743,7 @@ class CI_Output {
{
$uri = $CI->uri->uri_string();
- if (($cache_query_string = $CI->config->item('cache_query_string')) && !empty($_SERVER['QUERY_STRING']))
+ if (($cache_query_string = $CI->config->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
{
if (is_array($cache_query_string))
{