ILTK,
Hopefully somebody can convert this to a plugin but if you want a 'hack' method.....
In you /forums/includes/class_bbcode.php file look around line 1827 for:
PHP Code:
return '<img src="' . $link . '" border="0" alt="" />';
... and replace it with:
PHP Code:
$link_file = $link;
$link_bits = split('/',$link_file);
if(is_array($link_bits)) $link_file = $link_bits[count($link_bits)-1];
$link_bits = split('\.',$link_file);
$link_desc = str_replace('_', ' ', $link_bits[0]);
return '<img src="' . $link . '" border="0" alt="' . $link_desc . '" />';
What that will do is take something like...
PHP Code:
[img]http://www.coolscifi.com/forums/images/cinvin_steelrubber/misc/coolscifi_logo.jpg[/img]
... and give it an ALT tag of "coolscifi logo" (the "_" is being replaced converted to a space).