]> git.llucax.com Git - mecon/intranet.git/commitdiff
Se agrega mensajito cuando no tiene ningun sistema y se centran los mensajes.
authorLeandro Lucarella <llucax@gmail.com>
Wed, 16 Jun 2004 20:02:37 +0000 (20:02 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 16 Jun 2004 20:02:37 +0000 (20:02 +0000)
sistema/local_lib/HTML_Mensaje.php
sistema/www/login.php
sistema/www/sistemas.php

index faef4f7b38dc3b1776944d4a2ebe63d9ea08f23b..4729fc8347b7353e145df14d6bbbc074069d7cd9 100644 (file)
@@ -24,7 +24,7 @@
 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                                                    |
 // +--------------------------------------------------------------------+
 //
-// $Id: xmi2code.tpl.php 2 2003-06-23 18:29:20Z gmeray $
+// $Id$
 //
 
 require_once 'MECON/HTML/Image.php';
@@ -151,7 +151,7 @@ Puede ser: 'error', 'ok', 'alerta'.
        $tabla->updateCellAttributes(1, 1, array('background'=>'/sistemas/intranet/images/mensaje_superior.gif'));
        $tabla->updateCellAttributes(3, 1, array('background'=>'/sistemas/intranet/images/mensaje_inferior.gif'));
        
-       return $tabla->toHtml();
+       return '<div align="center">' . $tabla->toHtml() . '</div>';
                
     }
     // -X2C
@@ -171,4 +171,4 @@ Puede ser: 'error', 'ok', 'alerta'.
     // -X2C
 
 } // -X2C Class :HTML_Mensaje
-?>
\ No newline at end of file
+?>
index 91bccbe77b37bf21f509e8ed35e8f24f6e7c4121..1ef37754eb4ab83aa5b6914e25b8ddd727614d9c 100644 (file)
@@ -66,7 +66,7 @@
     
       $login = new HTML_Login();
       if(isset($error) && $error == 1)
-      $login->login_incorrecto = true;//FIXME terminar de prgramar cuando haya ldap
+      $login->login_incorrecto = true;
       $t = new HTML_Table(array('width'       => 760,
                                 'align'       => 'center',
                                'cellspacing' => 0,
index 4981c2486bdc598ca19e94b3d4ce66feade12125..dbc1d3773f66913a6a02ac3e3dc74d7c57cc4d2b 100644 (file)
@@ -13,6 +13,7 @@ require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'DB.php';
 require_once 'AI/Sistema.php';
+require_once 'HTML_Mensaje.php';
 
 define('COLUMNAS', 3);
 
@@ -88,6 +89,10 @@ foreach ($sists as $id => $s) {
 unset($sists);
 unset($samurai);
 
+if (!$sistemas) {
+    $t = new HTML_Mensaje('denegado',
+            'No tiene permisos para usar ningĂșn sistema', 370);
+}
 $sistema = @array_shift($sistemas);
 while ($sistema) {
     $row = array();