pierians this should already be replaced if the board is not replacing you have modified the line that bot posts and forgot to edit it in preg_replace
d0nbiz - PM me bot.php file
Here is something for your reference
PHP Code:
$pa = '
[b]Links checked on ' . date('d/m/y'). ' at '. date('H:i') . ' by RapidW Bot[/b]'; //This will append this at the end of the checked post
Second Edit
Code:
$ppa = '<br /> <b>Links checked on ' . date('d/m/y'). ' at '. date('H:i') . ' by RapidW Bot</b>'; //VB uses a caching technique, this will append it to end of parsed post. This is HTML!
Third Edit (Needs to match with $pa and escaping
Code:
$post = preg_replace("/\[b\]Links checked on(.+)by RapidW Bot\[\/b\]/" , "" , $post); //Replace if it is already checked by LC bot
Fourth Edit (Needs to match with $ppa and escaping)
Code:
$postparsed = preg_replace("/\<br \/\> \<b\>Links checked on(.+)by RapidW Bot\<\/b\>/" , "" , $postparsed);
Note : (.+) Will match anything