]> git.llucax.com Git - mecon/meconlib.git/blobdiff - pear_lib_tmp/HTML/Image.php
Se agrega la primera versiĆ³n de HTML_Link y se corrige HTML_Image.
[mecon/meconlib.git] / pear_lib_tmp / HTML / Image.php
index 5c9df5b2f3fd827fe980c1db9482673a1e43a383..628b952132380b9aad0ec1361da26ed4229c07ab 100644 (file)
@@ -53,10 +53,14 @@ 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;
+        if (is_array($attrs)) {
+            $attrs['src'] = $src;
+            $attrs['alt'] = $alt;
+        } else {
+            $attrs .= " src=$src alt=$alt";
+        }
         parent::HTML_Common($attrs);
     }
     // -X2C
@@ -102,7 +106,7 @@ class HTML_Image extends HTML_Common {
      */
     function setSrc($src)// ~X2C
     {
-        $this->updateAttributes('src' => $src);
+        $this->updateAttributes(array('src' => $src));
     }
     // -X2C
 
@@ -130,7 +134,7 @@ class HTML_Image extends HTML_Common {
      */
     function setAlt($alt)// ~X2C
     {
-        $this->updateAttributes('alt' => $alt);
+        $this->updateAttributes(array('alt' => $alt));
     }
     // -X2C