]> git.llucax.com Git - mecon/meconlib.git/blobdiff - pear_lib_tmp/HTML/Image.php
Se arregla un bug.
[mecon/meconlib.git] / pear_lib_tmp / HTML / Image.php
index 2a139444a8f093019a6f3f0187d9b1c7b8866d7b..9e03d46afa3002a42fa140252330ad5dde2eac54 100644 (file)
@@ -53,10 +53,14 @@ class HTML_Image extends HTML_Common {
      * @return void
      * @access public
      */
-    function HTML_Image($src = '', $alt = '', $attrs = array('border' => 0))// ~X2C
+    function HTML_Image($src = '', $alt = '', $attrs = array())// ~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
@@ -136,4 +140,4 @@ class HTML_Image extends HTML_Common {
 
 } // -X2C Class :Image
 
-?>
\ No newline at end of file
+?>