Quote:
Originally Posted by nerbert
It shouldn't be hard to make a plugin for showthread_complete that uses preg_replace() to fix it. I'll see what I can do. (I'm slow and lazy though!)
--------------- Added [DATE]1368386382[/DATE] at [TIME]1368386382[/TIME] ---------------
TRy this:
Product: vBulletin
Hook Location: showthread_complete
Title: Whatever
Execution Order: 5
PHP Code:
$max_size = "4";
$pattern = '/<font size="(\d{2,}|[^1-' . $max_size . '])">/';
$replace = '<font size="' . $max_size . '">';
$postbits = preg_replace($pattern, $replace, $postbits);
|
That worked like a treat! Thank you very much