]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Cambios a Armar con LOgin
authorMartín Marrese <marrese@gmail.com>
Thu, 14 Aug 2003 20:44:40 +0000 (20:44 +0000)
committerMartín Marrese <marrese@gmail.com>
Thu, 14 Aug 2003 20:44:40 +0000 (20:44 +0000)
lib/MECON/Usuario.php

index 844e248b5636e46d8630b9095aa564fe87b57c41..83329ad26ad71e7b64ef0959586d9963b907fdba 100644 (file)
@@ -105,16 +105,21 @@ class MECON_Usuario {
         }
         else
         {
         }
         else
         {
+            
+            //$login = ereg_replace ("@", "\\\@", $login);
             $sql = "SELECT dni,nombre
                     from Usuario
                     where login = '$login'";
             $result = $db->query($sql);
             $sql = "SELECT dni,nombre
                     from Usuario
                     where login = '$login'";
             $result = $db->query($sql);
+            if ($result->NumRows()>0){
+            
             $row = $result->fetchRow();
             $dni = $row[0];
             $nombre = $row[1];
             $this->dni=$dni;
             $this->nombre=$nombre;
             $this->login=$login;
             $row = $result->fetchRow();
             $dni = $row[0];
             $nombre = $row[1];
             $this->dni=$dni;
             $this->nombre=$nombre;
             $this->login=$login;
+            }
         }
   }
   // -X2C
         }
   }
   // -X2C
@@ -136,7 +141,7 @@ class MECON_Usuario {
       if(! is_null($login))
       {
             $this->ArmarconLOGIN($login);
       if(! is_null($login))
       {
             $this->ArmarconLOGIN($login);
-            $this->buscarUsuarioDNI($dni);
+            $this->buscarUsuarioDNI($this->getDni());
       }
         
   }
       }
         
   }
@@ -168,6 +173,17 @@ class MECON_Usuario {
   }
   // -X2C
 
   }
   // -X2C
 
+// +X2C Operation 136
+    /**
+     * @return int
+     * @access public
+     */
+    function getDni() // ~X2C
+  {
+      return $this->dni;
+  }
+  // -X2C
+
     // +X2C Operation 137
     /**
      * @return string
     // +X2C Operation 137
     /**
      * @return string