소스 검색

Merge branch 'dev'

prodstable
Guillaume Bourgeois 2 년 전
부모
커밋
1ffe49a8a0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      common/models/LoginForm.php

+ 1
- 1
common/models/LoginForm.php 파일 보기

@@ -121,7 +121,7 @@ class LoginForm extends Model
public function getUser()
{
if ($this->_user === false) {
$this->_user = User::findByEmail($this->email);
$this->_user = User::findOne(['email' => $this->email, 'type' => User::TYPE_INDIVIDUAL]);
}

return $this->_user;

Loading…
취소
저장