summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorRichard Deurwaarder (Xeli) <richard@xelification.com>2013-06-24 15:06:19 +0200
committerRichard Deurwaarder (Xeli) <richard@xelification.com>2013-06-24 15:06:19 +0200
commit7cc29451bb685d05b4faeb79762b1b291cb44b8b (patch)
tree3d16be060da4daff0653220564c9a65f9bec1c90 /system/core/Common.php
parent4055d577822130006e058f6505d022aac444f855 (diff)
remove else clause in is_https function, just add return FALSE as fallback
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index 851d4f34e..f3a1b5055 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -358,10 +358,7 @@ if ( ! function_exists('is_https'))
{
return TRUE;
}
- else
- {
- return FALSE;
- }
+ return FALSE;
}
}