From: Martín Marrese Date: Thu, 21 Aug 2003 18:51:12 +0000 (+0000) Subject: Se actualizan los nuevos nombres de MECON_HTML_Image y MECON_HTML_Link X-Git-Tag: svn_import~28 X-Git-Url: https://git.llucax.com/mecon/ai.git/commitdiff_plain/c1c3baf77f9975549988167174f7805e9b40073e Se actualizan los nuevos nombres de MECON_HTML_Image y MECON_HTML_Link --- 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')); } // }}}