Skip to content

Commit 0d1a4c8

Browse files
committed
removed extra parenthesis in detect_ssl method
1 parent a7fba07 commit 0d1a4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/libraries/REST_Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ public function response($data = array(), $http_code = null)
432432
*/
433433
protected function _detect_ssl()
434434
{
435-
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on"));
435+
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on");
436436
}
437437

438438

0 commit comments

Comments
 (0)