X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/4cf359b26dbb47d985591feb13d4b5a4d6904065..a7c8936abc0bf04b4410c4bc5ad0eaebe49b816e:/lib/MECON/HTML/Image.php 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