From 73bb5f61e9a41a3071c75019454f41796fb9c19c Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 19 Sep 2003 15:27:25 +0000 Subject: [PATCH] Se saca el align="middle" porque daba problemas con el Netscape. --- lib/MECON/HTML/Image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.43.0