From 1b92a1f6b7ba41d0541f71916ea67f11da494288 Mon Sep 17 00:00:00 2001 From: Bert Hankes Date: Thu, 1 Dec 2016 13:28:25 +0100 Subject: [PATCH] Update Session.php Fixed issue #11947: Session.php is considered a virus under ASL/clamav --- application/models/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Session.php b/application/models/Session.php index 899de3e058e..4a431c8082e 100644 --- a/application/models/Session.php +++ b/application/models/Session.php @@ -69,7 +69,7 @@ public function afterFind() private function hexToStr($hex){ $string=''; for ($i=0; $i < strlen($hex)-1; $i+=2){ - $string .= chr(hexdec($hex[$i].$hex[$i+1])); + $string .= chr( hexdec( $hex[$i].$hex[$i+1] ) ); } return $string; }