Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------
Creado: Thu Aug 21 15:09:10 2003
-Autor: @@author <@@email>
+Author: Leandro Lucarella <llucar@mecon.gov.ar>
-------------------------------------------------------------------------------
$Id$
-----------------------------------------------------------------------------*/
-
+// +X2C includes
+require_once 'HTML/Common.php';
+// ~X2C
// +X2C Class 537 :MECON_HTML_Image
/**
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