From 9142af812076cdef19972cf9f4b3d584f1b247c1 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 8 May 2005 02:56:25 +0000 Subject: [PATCH] Bugfixes. --- src/lib/Usuario.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/lib/Usuario.php b/src/lib/Usuario.php index 00c5255..2d05191 100644 --- a/src/lib/Usuario.php +++ b/src/lib/Usuario.php @@ -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. -- 2.43.0