$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
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',
)
);
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',
)
'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',
)
);