X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/4a71fb9feda4277f1755ed095b3f74d9e5eacb4e..a7c8936abc0bf04b4410c4bc5ad0eaebe49b816e:/lib/MECON/HTML/Image.php diff --git a/lib/MECON/HTML/Image.php b/lib/MECON/HTML/Image.php index 06953a5..86406ef 100644 --- a/lib/MECON/HTML/Image.php +++ b/lib/MECON/HTML/Image.php @@ -19,12 +19,14 @@ 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 ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ - +// +X2C includes +require_once 'HTML/Common.php'; +// ~X2C // +X2C Class 537 :MECON_HTML_Image /** @@ -69,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