b7ce005f by sayhoChun

modifyUserInfo issue handled

1 parent c7829abe
...@@ -367,8 +367,8 @@ if (! class_exists("ApiUser")) ...@@ -367,8 +367,8 @@ if (! class_exists("ApiUser"))
367 function modifyUserInfo() 367 function modifyUserInfo()
368 { 368 {
369 $userNo = $this->appUser["no"]; 369 $userNo = $this->appUser["no"];
370 //$is_file_change = $this->req["is_file_change"]; // NEW / DEL / NON
371 // $userNo=$this->req["userNo"]; 370 // $userNo=$this->req["userNo"];
371
372 $userPwd = $this->req["userPwd"]; 372 $userPwd = $this->req["userPwd"];
373 $userPwdConfirm = $this->req["userPwdConfirm"]; 373 $userPwdConfirm = $this->req["userPwdConfirm"];
374 $nickName = $this->req["nickName"]; 374 $nickName = $this->req["nickName"];
...@@ -378,11 +378,20 @@ if (! class_exists("ApiUser")) ...@@ -378,11 +378,20 @@ if (! class_exists("ApiUser"))
378 $userVehicleType=$this->req["userVehicleType"]; 378 $userVehicleType=$this->req["userVehicleType"];
379 $userVehicleWish=$this->req["userVehicleWish"]; 379 $userVehicleWish=$this->req["userVehicleWish"];
380 380
381 $sql="SELECT * FROM tblUser WHERE nickName='{$nickName} AND status=1'"; 381 $sql="SELECT nickName FROM tblUser WHERE userNo='{$userNo}'";
382 $currentNick=$this->getValue($sql, "nickName");
383 // echo "currentNick".$currentNick;
384 // echo "changeNick".$nickName;
385
386 if($currentNick != $nickName){
387 echo "???";
388 $sql="SELECT * FROM tblUser WHERE nickName='{$nickName}' AND status=1";
382 $regInfo=$this->getRow($sql); 389 $regInfo=$this->getRow($sql);
383 if($regInfo != null) 390 if($regInfo != null)
384 return $this->makeResultJson(-100, "닉네임 중복을 확인해 주세요"); 391 return $this->makeResultJson(-100, "닉네임 중복을 확인해 주세요");
385 392
393 }
394
386 if($userPwd != $userPwdConfirm) 395 if($userPwd != $userPwdConfirm)
387 return $this->makeResultJson(-101, "비밀번호 가 일치하지 않습니다"); 396 return $this->makeResultJson(-101, "비밀번호 가 일치하지 않습니다");
388 397
......