]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-permisos.php
Se modificaron las validaciones de permisos que habia que tener para poder trabajar...
[mecon/samurai.git] / sistema / www / sistemas / sistemas-permisos.php
index 7eeaedaf4ddc6956acfa0367c91a561dace0c22c..241a5ae63870cf4d59bbc1cf9abd3c9f70b2a965 100644 (file)
 //
 // $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 {{{
@@ -29,9 +36,6 @@
     require_once 'SAMURAI/Permiso.php';
     // }}}
 // }}}
-//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
-$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
-//}}}
 //OBTENGO EL ID DEL SISTEMA {{{
     //El id de sistema viene por get o por post, no hay otra posibilidad
     $idSistema = 0;
@@ -75,8 +79,8 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
     $TABLAPERM->addRow($row, 'titulo');
     
     $asocs = $SISTEMA->getAsociaciones();
-    
-    foreach ($asocs as $key => $asoc) {
+
+    foreach ($asocs as $asoc) {
         $obs = ereg_replace(' ' , '%20', $asoc['obs']); //Cambio los espacios por %20 para que funcione bien con el netscape
         $estilo = 'comun';
         $permiso = new SAMURAI_Permiso($DB, $asoc['id']);