]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Image.php
Se corrige un error en el pager de TablaDB.
[mecon/meconlib.git] / lib / MECON / HTML / Image.php
index 234050715b565067af9d5a19e34ea0cf3ef6d35a..86406efb52dcf656735dba2b91ceb9053610f030 100644 (file)
@@ -71,11 +71,11 @@ class MECON_HTML_Image extends HTML_Common {
     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