예제 #1
0
 function addEmail($email, $password = "")
 {
     Sql_Query(sprintf('insert into user set email = "%s",
   entered = now(),password = "******",
   passwordchanged = now(),disabled = 0,
   uniqid = "%s",htmlemail = 1
   ', $email, $password, getUniqid()), 1);
     $id = Sql_Insert_Id();
     if (is_array($_SESSION["userdata"])) {
         saveUserByID($id, $_SESSION["userdata"]);
     }
     $_SESSION["userid"] = $id;
     return $id;
 }
예제 #2
0
 function addEmail($email, $password = "")
 {
     ## don't touch the password if it's empty
     if (!empty($password)) {
         $passwordchange = sprintf('password = "******",
   passwordchanged = current_timestamp,', $password);
     } else {
         $passwordchange = '';
     }
     Sql_Query(sprintf('insert into user set email = "%s",
   entered = current_timestamp,%s disabled = 0,
   uniqid = "%s",htmlemail = 1
   ', $email, $passwordchange, getUniqid()), 1);
     $id = Sql_Insert_Id('user', 'id');
     if (is_array($_SESSION["userdata"])) {
         saveUserByID($id, $_SESSION["userdata"]);
     }
     $_SESSION["userid"] = $id;
     return $id;
 }