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