]> git.llucax.com Git - mecon/ai.git/commitdiff
Se actualizan los nuevos nombres de MECON_HTML_Image y MECON_HTML_Link
authorMartín Marrese <marrese@gmail.com>
Thu, 21 Aug 2003 18:51:12 +0000 (18:51 +0000)
committerMartín Marrese <marrese@gmail.com>
Thu, 21 Aug 2003 18:51:12 +0000 (18:51 +0000)
sistema/www/index.php

index 4983778a0c9f555d8524bfef6ded7ee5a8f8843e..06aacf278758e62c825934f7ab133132a407b41f 100644 (file)
@@ -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('<DIV class="texto11_negro" valign="middle" align="center">');
         $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'));
 }
 // }}}