I updated the zip file, I had included the wrong instructions for the manual file edit- my apologies.
The real edit, which has been fixed in the instructions now is:
Open file /includes/class_bbcode.php
Find in file: function handle_bbcode_img_match
or
Go to line #: 1993(in VB 3.8.7, may vary in other versions)
Change:
PHP Code:
return '<img src="' . $link . '" border="0" alt="" />';
To:
PHP Code:
//return '<img src="' . $link . '" border="0" alt="" />';
($hook = vBulletinHook::fetch_hook('bbcode_img_match_vb3')) ? eval($hook) : false;
$retval = '<img src="' . $link . '" border="0" alt="'.$bop5alt.'" '.$bop5title.$bop5rscode.' />';
return $retval;