]> 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 2a139444a8f093019a6f3f0187d9b1c7b8866d7b..628b952132380b9aad0ec1361da26ed4229c07ab 100644 (file)
@@ -55,8 +55,12 @@ class HTML_Image extends HTML_Common {
      */
     function HTML_Image($src = '', $alt = '', $attrs = array('border' => 0))// ~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
         parent::HTML_Common($attrs);
     }
     // -X2C
@@ -136,4 +140,4 @@ class HTML_Image extends HTML_Common {
 
 } // -X2C Class :Image
 
 
 } // -X2C Class :Image
 
-?>
\ No newline at end of file
+?>