]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Icon.php
Se borran cosas que no entran en mlib.
[mecon/meconlib.git] / lib / MECON / HTML / Icon.php
index 26f20f64f9c3918fc9c6adf36be9b5e64a5ecc11..2b5001d3c2b6b83aa68d409dbfb3022b33a11c9c 100644 (file)
@@ -79,9 +79,13 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
     function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs =
             array(), $align = 'right')
     {
     function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs =
             array(), $align = 'right')
     {
-        switch ($nombre) {
-            default:
-                $src = "/MECON/images/general_$nombre";
+        if (is_readable($nombre))
+        {
+            $src = $nombre; 
+        }
+        else             
+        {
+            $src = "/MECON/images/general_$nombre";
         }
         if (is_null($alt)) {
             $alt = '(' . strtoupper($nombre{0}) . ')';
         }
         if (is_null($alt)) {
             $alt = '(' . strtoupper($nombre{0}) . ')';