From: Leandro Lucarella Date: Wed, 27 Aug 2003 23:52:57 +0000 (+0000) Subject: Se corrige el link al Nuevo. X-Git-Tag: svn_import~22 X-Git-Url: https://git.llucax.com/mecon/ai.git/commitdiff_plain/0f0e8f6a39874a5c434ac4fbd57a80804dcf630a?ds=inline Se corrige el link al Nuevo. --- diff --git a/sistema/www/index.php b/sistema/www/index.php index acc7c0c..4466b20 100644 --- a/sistema/www/index.php +++ b/sistema/www/index.php @@ -238,15 +238,17 @@ if ($tipo) { if ($accion & ~AI_ALTA) { require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; + $link = new MECON_HTML_Link($tipo); + $marco->addBody('
'); + $link_text = ' Nuevo'; + $link->addContents($link_text); + $marco->addBody($link); $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo', array('border' => 0, 'align' => 'middle',)); $link = new MECON_HTML_Link($tipo); - $marco->addBody('
'); $link->addContents($img); - $link_text = ' Agregar un nuevo ' . $nombre; - $link->addContents($link_text); $marco->addBody($link); - $marco->addBody('
'); + $marco->addBody('
'); } $marco->addBody($form); // }}}