]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Image.php
Bug Fixes para que se vea bien en el netscape.
[mecon/meconlib.git] / lib / MECON / HTML / Image.php
index 06953a5574074e7960207df6f7e3b95e3cf82295..86406efb52dcf656735dba2b91ceb9053610f030 100644 (file)
@@ -19,12 +19,14 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 Boston, MA  02111-1307  USA
 -------------------------------------------------------------------------------
 Creado: Thu Aug 21 15:09:10 2003
 Boston, MA  02111-1307  USA
 -------------------------------------------------------------------------------
 Creado: Thu Aug 21 15:09:10 2003
-Autor:  @@author <@@email>
+Author:  Leandro Lucarella <llucar@mecon.gov.ar>
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
 
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
 
-
+// +X2C includes
+require_once 'HTML/Common.php';
+// ~X2C
 
 // +X2C Class 537 :MECON_HTML_Image
 /**
 
 // +X2C Class 537 :MECON_HTML_Image
 /**
@@ -69,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