Code: Select all
#Check if user has specified id-tag
if (isset($params['id']))
{
$id = ' id="'.$params['id'].'"';
} else {
$id = '';
}Code: Select all
return '<img'.$id.' src="'.$img.'"'.$alt.$align.$width.$height.' />';Code: Select all
#Check if user has specified id-tag
if (isset($params['id']))
{
$id = ' id="'.$params['id'].'"';
} else {
$id = '';
}Code: Select all
return '<img'.$id.' src="'.$img.'"'.$alt.$align.$width.$height.' />';

Sounds like my bug reportbaconburgare wrote: And fixed the IMG-tag so it validates to the W3C-standard.