Skip to content

Commit

Permalink
Update Session.php
Browse files Browse the repository at this point in the history
Fixed issue #11947: Session.php is considered a virus under ASL/clamav
  • Loading branch information
BertHankes committed Dec 1, 2016
1 parent 5f5cce8 commit 1b92a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/Session.php
Expand Up @@ -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;
}
Expand Down

0 comments on commit 1b92a1f

Please sign in to comment.