Ver código fonte

Merge branch 'dev' into pre

LuluFJ.Ho 2 anos atrás
pai
commit
21309ebab1

+ 3
- 3
app/Http/Controllers/Api/SeminarSignUpController.php Ver arquivo

@@ -24,9 +24,9 @@ class SeminarSignUpController extends ApiController
24 24
     {
25 25
         // \Log::info(print_r($request,true));
26 26
         
27
-        $name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
28
-        $email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
29
-        $mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');
27
+        $name = $this->safeEncrypt($request->input('name', ''), 'arm');
28
+        $email = $this->safeEncrypt($request->input('email', ''), 'arm');
29
+        $mobile = $this->safeEncrypt($request->input('mobile', ''), 'arm');
30 30
         $trackNo = $request->input('trackNo', '');
31 31
         
32 32
         $overOrNot = $this->seminarSignUpSv->overLimitOrNot($trackNo);