]> git.llucax.com Git - mecon/meconlib.git/blobdiff - pear_lib_tmp/HTML/Image.php
Se sobreescribe addRule() y addGroupRule() para que validen en el cliente tambien...
[mecon/meconlib.git] / pear_lib_tmp / HTML / Image.php
index 5c9df5b2f3fd827fe980c1db9482673a1e43a383..2a139444a8f093019a6f3f0187d9b1c7b8866d7b 100644 (file)
@@ -53,7 +53,7 @@ class HTML_Image extends HTML_Common {
      * @return void
      * @access public
      */
-    function HTML_Image($src = '', $alt = '', $attrs = array())// ~X2C
+    function HTML_Image($src = '', $alt = '', $attrs = array('border' => 0))// ~X2C
     {
         $attrs['src'] = $src;
         $attrs['alt'] = $alt;
@@ -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,10 +130,10 @@ class HTML_Image extends HTML_Common {
      */
     function setAlt($alt)// ~X2C
     {
-        $this->updateAttributes('alt' => $alt);
+        $this->updateAttributes(array('alt' => $alt));
     }
     // -X2C
 
 } // -X2C Class :Image
 
-?>
+?>
\ No newline at end of file