Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Down for maintenance
#14
Change the hide_email function to the follwoing to get it to work;

Code:
function hide_email($email){
$character_set = '+-.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz';
  $key = str_shuffle($character_set);
  $cipher_text = ''; $id = 'e'.rand(1,999999999);
  for ($i=0;$i<strlen($email);$i+=1) {
      $cipher_text.= $key[strpos($character_set,substr($email,$i,1))];   // changed line
  }
  $script = 'var a="'.$key.'";var b=a.split("").sort().join("");var c="'.$cipher_text.'";var d="";';
  $script.= 'for(var e=0;e<c.length;e++)d+=b.charAt(a.indexOf(c.charAt(e)));';
  $script.= 'document.getElementById("'.$id.'").innerHTML="<a href=\\"mailto:"+d+"\\">"+d+"</a>"';
  $script = "eval(\"".str_replace(array("\\",'"'),array("\\\\",'\"'), $script)."\")";
  $script = '<script type="text/javascript">/*<![CDATA[*/'.$script.'/*]]>*/</script>';
  return '<span id="'.$id.'">[javascript protected email address]</span>'.$script;
}

Mike.
My Github Repos: Github
Website: DigiMute
Reply


Messages In This Thread
Down for maintenance - by rogerstreets - 2010-06-09, 07:37:58
Down for maintenance - by maxpop - 2010-06-09, 07:44:52
Down for maintenance - by Oleg06 - 2010-06-09, 16:01:11
Down for maintenance - by pauloc - 2010-06-09, 17:53:05
Down for maintenance - by cumbe - 2010-06-10, 00:34:49
Down for maintenance - by n00dles101 - 2010-06-10, 00:53:43
Down for maintenance - by Lorentzen - 2010-06-10, 21:25:11
Down for maintenance - by Lorentzen - 2010-06-10, 21:29:41
Down for maintenance - by rogerstreets - 2010-06-10, 21:53:29
Down for maintenance - by JWH_Matthew - 2010-06-11, 02:18:01
Down for maintenance - by rogerstreets - 2010-06-11, 18:18:59
Down for maintenance - by JWH_Matthew - 2010-06-12, 00:48:50
Down for maintenance - by rogerstreets - 2010-06-14, 07:07:06
Down for maintenance - by n00dles101 - 2010-06-14, 08:32:33
Down for maintenance - by Zegnåt - 2010-06-14, 17:50:15
Down for maintenance - by spring - 2010-09-23, 19:22:46
Down for maintenance - by yojoe - 2010-11-07, 06:20:53



Users browsing this thread: 2 Guest(s)