]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se saca el align="middle" porque daba problemas con el Netscape.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 19 Sep 2003 15:27:25 +0000 (15:27 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 19 Sep 2003 15:27:25 +0000 (15:27 +0000)
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 = '';
     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) . '"';
         }
         foreach ($attributes as $key => $val) {
             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
         }
-        return "<IMG$attrs/>";
+        return "<img$attrs/>";
     }
     // -X2C
 
     }
     // -X2C