X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/51752326b82fed368e79077f4fa9901174cb24ba..64c8278273b47728f646b2c2e9d19ef18320298c:/sistema/www/sistemas.php diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index ecc28ee..4981c24 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -59,18 +59,18 @@ require_once 'SAMURAI/constantes.php'; $perm = new SAMURAI_Perm($_SESSION['usuario'], 0, $DB); $samurai = false; $sistemas = array(); -foreach ($sists as $i => $s) { +foreach ($sists as $id => $s) { // Agrego los sistemas en los que tiene permiso. $perm->setSistema($s->sistema); if ($perm->tiene()) { // Si es SAMURAI hay que ver si ya no lo agregamos antes. - if ($s->sistema == SAMURAI_PERM) { + if ($id == SAMURAI_PERM) { if (!$samurai) { $samurai = true; - $sistemas[] = $sists[$i]; + $sistemas[] = $sists[$id]; } } else { // Si no es SAMURAI lo agregamos incondicionalmente. - $sistemas[] = $sists[$i]; + $sistemas[] = $sists[$id]; } } // Si tiene permisos de SAMURAI en un sistema, hay que mostrar un link a @@ -113,7 +113,7 @@ while ($sistema) { array( 'OnClick' => "javascript:window.open('$url','s{$sistema->sistema}'," - . "'width=790,height=500,scrollbars=yes');return false;", + . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;", 'target' => '_blank', ) ); @@ -125,7 +125,7 @@ while ($sistema) { array( 'OnClick' => "javascript:window.open('$url','s{$sistema->sistema}'," - . "'width=790,height=500,scrollbars=yes');return false;", + . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;", 'target' => '_blank', 'class' => 'intranet_sistemas_txt', ) @@ -145,7 +145,7 @@ while ($sistema) { 'OnClick' => "javascript:window.open('{$sistema->link_ayuda}'," . "'sa{$sistema->sistema}'," - . "'width=790,height=500,scrollbars=yes');return false;", + . "'width=790,height=550,scrollbars=yes,resizable=yes');return false;", 'target' => '_blank', ) );