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}) . ')';