Title: Updated Anti-Spam Mod for Ticket.php [MOD]
Version: 1.0
Author: Raven
Demo: http://www.crikey-thatsmint.com/
Download: N/A
Website: http://www.crikey-thatsmint.com/
Description:
Hi there, here is a small mod I have made to change how users email addresses are protected from spam when viewing a ticket in 'ticket.php' which still retains the normal address format.
The standard way is to replace the @ symbol and all full stops using the following code:
Code: Select all
<td class="tickettd"><?php echo str_replace(array('@','.'),array(' (at) ',' (dot) '),$ticket['email']); ?>

Code: Select all
<?php echo str_replace(array('@'),array('<img src="img/@.gif" align=absbottom border=0 alt=@>'),$ticket['email']); ?>
I have also attached a few images in grey and black of various sizes if you decide to use this small mod.






*************************************/