Skip to content

Commit

Permalink
Merge pull request #606 from BertHankes/patch-27
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
c-schmitz committed Dec 5, 2016
2 parents 44123ef + 1b92a1f commit 4a768e9
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 4a768e9

Please sign in to comment.