2013-12-03, 10:03 PM
How to make this work sorry have like 0 experience with PHP
function nofollowlink_changelink($message){
$search = '<a';
$replace = '<a rel="nofollow"';
$message = str_replace($search , $replace , $message);
return $message;
}
function nofollowlink_changelink_internal($message){
$search = '<a rel="nofollow" href="http://letsforum.com';
$replace = '<a href="http://letsforum.com';
$message = str_replace($search , $replace , $message);
return $message;
}