Quote:
Originally Posted by ubblite
Can you tell me how to do this?
|
In the plugin 'Anonymizer Function', find:
PHP Code:
if (preg_match_all("/(\<a href=\")(.[^\"]*)/i", $text, $matches))
Replace With:
PHP Code:
if (preg_match_all("/(\<a href=YOURDOMAIN.COM\")(.[^\"]*)/i", $text, $matches))
Replace YOURDOMAIN.COM with a domain, for each domain you want to anonymize, add an 'OR'. For example:
PHP Code:
if (preg_match_all("/(\<a href=YOURDOMAIN.COM\")(.[^\"]*)/i", $text, $matches) OR preg_match_all("/(\<a href=DOMAIN2.COM\")(.[^\"]*)/i", $text, $matches))