X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/1fce1689d24ee6eed11644946bfa777a06d2ef8e..35dc97263ea8ab3af79406a00b8896e55c93d9b3:/sistema/www/sistemas/sistemas-permisos.php diff --git a/sistema/www/sistemas/sistemas-permisos.php b/sistema/www/sistemas/sistemas-permisos.php index b3870d9..a721f80 100644 --- a/sistema/www/sistemas/sistemas-permisos.php +++ b/sistema/www/sistemas/sistemas-permisos.php @@ -72,14 +72,15 @@ $TABLAPERM->addRow($row, 'titulo'); $asocs = $SISTEMA->getAsociaciones(); - + foreach ($asocs as $key => $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']); $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif); $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim ); - $Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif ); - $Elim = ereg_replace('##OBS##' , $asoc['obs'], $Elim ); + $Modif = ereg_replace('##OBS##' , $obs , $Modif ); + $Elim = ereg_replace('##OBS##' , $obs , $Elim ); $Modif = ereg_replace('##ACCION##' , 'm' , $Modif ); $Elim = ereg_replace('##ACCION##' , 'e' , $Elim ); $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim); @@ -93,7 +94,6 @@ $TABLAVOLVER->addRow($row,'align=left'); // }}} //DIBUJO LA PAGINA {{{ - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLAVOLVER); $MARCO->addTitle('Asociar Permisos y Sistemas'); //AGREGO LA TABLA DEL SISTEMA