X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0cf56477ad378a18f1d9daad478a4e14427b6b3b..9002d01b94477c868b4b6b84eb496262ea30fadf:/sistema/www/sistemas/sistemas.php
diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php
index e6f1bb7..8c96533 100644
--- a/sistema/www/sistemas/sistemas.php
+++ b/sistema/www/sistemas/sistemas.php
@@ -19,17 +19,21 @@
//
// $Id$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->setSistema(SAMURAI_PERM);
+if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
+ $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
+}
+$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
+//}}}
require_once 'MECON/HTML/Tabla.php';
require_once 'SAMURAI/Sistema.php';
-//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
-$SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
-//}}}
$aHrefPopup = '';
$aHref = '';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
- $aHrefPerm = '';
+ $aHrefPerm = '';
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
if (!@$_SESSION['samurai']['id_sistema']) {
header('Location: ./../sel-sistema?redirect=sistemas/sistemas');
@@ -39,7 +43,7 @@ $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
$sistemas = SAMURAI_Sistema::getSistemas($DB);
$TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
- $row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
+ $row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
$TABLA2->addRow($row);
$TABLA2->updateColAttributes(0,'align="left"');
$TABLA2->updateColAttributes(1,'align="right"');