function toHtml() // ~X2C
{
$attrs = '';
- $attributes = $this->getAttributes() + array('border' => 0, 'align' => 'middle');
+ $attributes = $this->getAttributes() + array('border' => 0);
foreach ($attributes as $key => $val) {
$attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
}
- return "<IMG$attrs/>";
+ return "<img$attrs/>";
}
// -X2C