X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/06305deecaf1cb509150c6e9419417475fae2618..f4ab6059989c7210efb86bbd700b4d7299ae5618:/sistema/www/index.php diff --git a/sistema/www/index.php b/sistema/www/index.php index acc7c0c..8e5fae8 100644 --- a/sistema/www/index.php +++ b/sistema/www/index.php @@ -238,15 +238,14 @@ if ($tipo) { if ($accion & ~AI_ALTA) { require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; + $marco->addBody('
'); + $link = new MECON_HTML_Link($tipo); + $link->addContents('Nuevo'); $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); // }}}