In functions.php:
Look for:
PHP Code:
function bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmilies,$dobbcode)
{ // parses text for vB code, smilies and censoring
global $DB_site,$wordwrap,$allowdynimg, $bbuserinfo;
static $smilies,$bbcodes;
global $regexcreated,$searcharray,$replacearray,$phpversionnum;
Add the following directly below it:
Code:
$bbcode = preg_replace("/img\]/i", "thumb]", $bbcode);
This will replace all your IMG tags with THUMB tags.