Line 771 in /home/smartid/public_html/framework/email/Email.php
762 'span.codedirection { unicode-bidi: bidi-override; direction: rtl; }', 763 'codedirectionCSS' 764 ); 765 return '<span class="codedirection">' . strrev($email) . '</span>'; 766 case 'visible' : 767 $obfuscated = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); 768 return strtr($email, $obfuscated); 769 case 'hex' : 770 $encoded = ''; 771 for ($x=0; $x < strlen($email); $x++) $encoded .= '&#x' . bin2hex($email{$x}).';'; 772 return $encoded; 773 default: 774 user_error('Email::obfuscate(): Unknown obfuscation method', E_USER_NOTICE); 775 return $email; 776 } 777 }