And while checking around for how to make current linked images ( ie those using [ img] tags ) similiarly resized, chanced upon some code provided by Zzed in one of his hacks (
here) which can be used here as well.
In admin/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 below:
PHP Code:
$bbcode = preg_replace("/img\]/i", "img2]", $bbcode);
This will replace all linked images using the [ img] tags with the new [ img2] tag automatically.