]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
Bugfixes.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 8 May 2005 02:56:25 +0000 (02:56 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 8 May 2005 02:56:25 +0000 (02:56 +0000)
src/lib/Usuario.php

index 00c5255235e488a6d2e0b939fa9288a26bcf1f11..2d051910bd1882eb23519f6cdb7bf0cfc9ca5125 100644 (file)
@@ -136,7 +136,7 @@ class Usuario
     /// Muestra el usuario como una opción de un select HTML.
     function toHtmlOption($selected = null)
     {
-        $cred = $this->esAsesor() ? '' : ' ('.$this->getCreditos().')';
+        $cred = $this->esAsesor() ? '' : (' ('.$this->getCreditos().')');
         $admin =  $this->esAdmin() ? '* ' : '';
         if (!is_null($selected))
             $selected = ($this->getId() == $selected) ? ' selected="selected"' : '';
@@ -149,9 +149,12 @@ class Usuario
     function login()
     {
         $this->log('Ingreso al sistema');
-        $res = file_creditos_login($this->_id); // Actualizamos créditos
-        if (is_array($res))
-            $this->log("Se restaron créditos ({$res[0]}) por no preguntar.");
+        if (!$this->esAsesor())
+        {
+            $res = file_creditos_login($this->_id); // Actualizamos créditos
+            if (is_array($res))
+                $this->log("Se restaron créditos ($res[0]) por no preguntar.");
+        }
     }
 
     /// Salida del sistema.