Re: Potential Spam Loop Hole
Alright guys, I realized the importance of this and came up with a fix which you can implement now if you don't want to wait until v2.9.3.
Edit your single.php file and remove the following line below. (Make sure you create a back up of this file before proceeding in case you come across any issues.)
Code:
<input type="hidden" name="receiver_email" value="<?php email_spam(get_post_meta($post->ID, "email", true)); ?>" />
That was the jumbled ad owner email address that you can view on ad pages.
Now scroll up until you get to the following three lines and comment them out.
Code:
$receiver_email = strip_tags($_POST['receiver_email']);
$receiver_email = str_replace("gd6j83ksl", "@", $receiver_email);
$receiver_email = str_replace("m3gd0374h", ".", $receiver_email);
Then paste this line of code below the commented out lines:
Code:
$receiver_email = trim(get_post_meta($post->ID, "email", true));
Now test it and make sure everything works properly. You should no longer see the jumbled email address in the source code and ad owners will get the email inquiries.