Skip to content

Commit

Permalink
Removed unnecessary bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
Stolz committed Dec 8, 2012
1 parent a38b871 commit 52a78e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/REST_Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ public function response($data = array(), $http_code = null)
*/
protected function _detect_ssl()
{
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on"));
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on");
}


Expand Down

0 comments on commit 52a78e9

Please sign in to comment.