albo wrote:
Thanks. I haven't been able to find any way to do that within PHPBB or any of the mods I've added, and extensive searching at phpbb.com hasn't turned up anything helpful. Any suggestions as to where that info might be found would be greatly appreciated!
Albo
Ok so a quick hack I just tested..
This code allows images that start with
http://www.htaccesselite.com and deletes all others.
To use it, edit the file viewtopic.php and search for
Code:
$message = str_replace("\n", "\n<br />\n", $message);
and then paste the following directly under it.
Code:
$message=preg_replace('@<img src="http://www\.htaccesselite\.com([^>]*?)>@si','<img class="iok" src="http://www.htaccesselite.com\\1>',$message);
$message=preg_replace('@<img src="[^>]*?>@si',"",$message);
Your welcome, I hate spammers too :)