Quote:
Originally Posted by TomHQ
What is the syntax for multiple sites? I've tried the carriage return but that did not work.
|
Should be just a new line per site - try editing the "Trash Referals!" plugin and replace
Code:
$rtsbadrefs = explode("\r\n",$vbulletin->options['rts_bad_refs']);
$rtsbadips = explode("\r\n",$vbulletin->options['rts_ips']);
with
Code:
$crlf = chr(13).chr(10);
$rtsbadrefs = explode($crlf,$vbulletin->options['rts_bad_refs']);
$rtsbadips = explode($crlf,$vbulletin->options['rts_ips']);
let me know how that goes, thanks...