]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-permisos.php
BugFix en MECON_Usuario::asociarPerfil
[mecon/samurai.git] / sistema / www / sistemas / sistemas-permisos.php
index a1075551fea07e73604cb348383d9b7972056a90..020695a048343bad508903208a3de43ba0168f47 100644 (file)
@@ -29,6 +29,9 @@
     require_once 'SAMURAI/Permiso.php';
     // }}}
 // }}}
     require_once 'SAMURAI/Permiso.php';
     // }}}
 // }}}
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
+//}}}
 //OBTENGO EL ID DEL SISTEMA {{{
     //El id de sistema viene por get o por post, no hay otra posibilidad
     $idSistema = 0;
 //OBTENGO EL ID DEL SISTEMA {{{
     //El id de sistema viene por get o por post, no hay otra posibilidad
     $idSistema = 0;
@@ -44,7 +47,7 @@
     $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
     $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2');
     $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2');
     $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
     $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2');
     $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2');
-    $SISTEMA->setResponsable($_SESSION['samurai']['login']);
+    $SISTEMA->setResponsable($_SESSION['usuario']);
 // }}}
 //AGREGO LA INFORMACION DEL SISTEMA {{{
     $row = array ('Datos del sistema');
 // }}}
 //AGREGO LA INFORMACION DEL SISTEMA {{{
     $row = array ('Datos del sistema');
@@ -72,8 +75,8 @@
     $TABLAPERM->addRow($row, 'titulo');
     
     $asocs = $SISTEMA->getAsociaciones();
     $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']);
         $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']);