Explorar el Código

Merge branch 'dev'

master
Guillaume hace 4 años
padre
commit
5e98fc7841
Se han modificado 1 ficheros con 8 adiciones y 3 borrados
  1. +8
    -3
      backend/controllers/UserController.php

+ 8
- 3
backend/controllers/UserController.php Ver fichero

@@ -155,9 +155,14 @@ class UserController extends BackendController
{
$model = new User();

$userExist = User::searchOne([
'email' => Yii::$app->request->post('email')
]);
$userExist = false ;
$posts = Yii::$app->request->post() ;

if($posts) {
$userExist = User::searchOne([
'email' => $posts['User']['email']
]);
}

if ($userExist) {
Producer::addUser($userExist->id, GlobalParam::getCurrentProducerId()) ;

Cargando…
Cancelar
Guardar