From c1c3baf77f9975549988167174f7805e9b40073e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Thu, 21 Aug 2003 18:51:12 +0000 Subject: [PATCH] Se actualizan los nuevos nombres de MECON_HTML_Image y MECON_HTML_Link --- sistema/www/index.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sistema/www/index.php b/sistema/www/index.php index 4983778..06aacf2 100644 --- a/sistema/www/index.php +++ b/sistema/www/index.php @@ -235,11 +235,11 @@ if ($tipo) { // Agrego el menu, link para nuevo y formulario a la página. {{{ $marco->addMenuVertical($arbol); if ($accion & ~AI_ALTA) { - require_once 'HTML/Image.php'; - require_once 'HTML/Link.php'; - $img = new HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo', + require_once 'MECON/HTML/Image.php'; + require_once 'MECON/HTML/Link.php'; + $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo', array('border' => 0, 'align' => 'middle',)); - $link = new HTML_Link($tipo); + $link = new MECON_HTML_Link($tipo); $marco->addBody('
'); $link->addContents($img); $link_text = ' Agregar un nuevo ' . $nombre; @@ -254,9 +254,9 @@ if ($tipo) { // No se está editando nada, agrego la imágen de bienvenida a la página. {{{ } else { - require_once 'HTML/Image.php'; + require_once 'MECON/HTML/Image.php'; $marco->setEspacios(false); - $marco->addBody(new HTML_Image('images/home', 'Adminitrador de Intranet')); + $marco->addBody(new MECON_HTML_Image('images/home', 'Adminitrador de Intranet')); } // }}} -- 2.43.0