X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/a95943233a2de759001c620447075bacbadbb211..099ede8532611662141d15172b5e9d947e49474a:/lib/MECON/HTML/Image.php diff --git a/lib/MECON/HTML/Image.php b/lib/MECON/HTML/Image.php index 8ba131f..86406ef 100644 --- a/lib/MECON/HTML/Image.php +++ b/lib/MECON/HTML/Image.php @@ -19,7 +19,7 @@ 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$ -----------------------------------------------------------------------------*/ @@ -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