Personally I use something like this;
PHP Code:
$find = 'test';
$replace = 'blablaa';
$vbulletin->templatecache['reputationbit'] = str_replace($find,$find . $replace,$vbulletin->templatecache['reputationbit']);
worked for my postbit mods.
--------------- Added [DATE]1269224776[/DATE] at [TIME]1269224776[/TIME] ---------------
Also the hook is important. I put mine on showthread_start. If you put it on global_start, it will be running even when it is not needed, this impacts upon performance, however if you hook it into showthread_start, then it will only run on threads, which is where it is needed. :up: