From: Leandro Lucarella Date: Fri, 19 Sep 2003 15:27:25 +0000 (+0000) Subject: Se saca el align="middle" porque daba problemas con el Netscape. X-Git-Tag: svn_import~272 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/73bb5f61e9a41a3071c75019454f41796fb9c19c Se saca el align="middle" porque daba problemas con el Netscape. --- diff --git a/lib/MECON/HTML/Image.php b/lib/MECON/HTML/Image.php index 2340507..86406ef 100644 --- a/lib/MECON/HTML/Image.php +++ b/lib/MECON/HTML/Image.php @@ -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 ""; + return ""; } // -X2C