From: Leandro Lucarella Date: Tue, 1 Jul 2003 18:50:05 +0000 (+0000) Subject: Se arregla un bug. X-Git-Tag: svn_import~427 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/e8da4e6ed55aa6dff5dd8df7d65d62bed3b4d7b5 Se arregla un bug. --- diff --git a/pear_lib_tmp/HTML/Image.php b/pear_lib_tmp/HTML/Image.php index 5c9df5b..d0aa40e 100644 --- a/pear_lib_tmp/HTML/Image.php +++ b/pear_lib_tmp/HTML/Image.php @@ -102,7 +102,7 @@ class HTML_Image extends HTML_Common { */ function setSrc($src)// ~X2C { - $this->updateAttributes('src' => $src); + $this->updateAttributes(array('src' => $src)); } // -X2C @@ -130,7 +130,7 @@ class HTML_Image extends HTML_Common { */ function setAlt($alt)// ~X2C { - $this->updateAttributes('alt' => $alt); + $this->updateAttributes(array('alt' => $alt)); } // -X2C