]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Image.php
- Cambio un query a BASE.Tabla
[mecon/meconlib.git] / lib / MECON / HTML / Image.php
index 8ba131f3f7eef63b2b44ec6b5f8288b8ef8acd8f..86406efb52dcf656735dba2b91ceb9053610f030 100644 (file)
@@ -19,7 +19,7 @@ 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
-Autor:  @@author <@@email>
+Author:  Leandro Lucarella <llucar@mecon.gov.ar>
 -------------------------------------------------------------------------------
 $Id$
 -----------------------------------------------------------------------------*/
@@ -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