]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/sistemas.php
- Arregle el estilo en el link del institucional
[mecon/intranet.git] / sistema / www / sistemas.php
index ecc28eea7ef87313db6a1b7fa2698fe0a5644d3a..4981c2486bdc598ca19e94b3d4ce66feade12125 100644 (file)
@@ -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',
                     )
                                );