Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16820 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16820 Rev 16996
Línea 104... Línea 104...
104
            
104
            
105
            if(!$user_uuid || !$rand || !$timestamp || !$password ) {
105
            if(!$user_uuid || !$rand || !$timestamp || !$password ) {
106
                throw new \Exception('ERROR_PARAMETERS_ARE_INVALID');
106
                throw new \Exception('ERROR_PARAMETERS_ARE_INVALID');
Línea -... Línea 107...
-
 
107
            }
-
 
108
            
Línea 107... Línea 109...
107
            }
109
            
108
            
110
            session_regenerate_id(true);
Línea 109... Línea 111...
109
 
111
 
Línea 145... Línea 147...
145
                    'success' => false,
147
                    'success' => false,
146
                    'data' => 'ERROR_PARAMETERS_ARE_INVALID'
148
                    'data' => 'ERROR_PARAMETERS_ARE_INVALID'
147
                ]);
149
                ]);
148
            }
150
            }
Línea -... Línea 151...
-
 
151
            
-
 
152
            session_regenerate_id(true);
149
            
153
            
150
            $authAdapter = new AuthOneTimePasswordAdapter ($this->adapter, $this->config);
154
            $authAdapter = new AuthOneTimePasswordAdapter ($this->adapter, $this->config);
Línea 151... Línea 155...
151
            $authAdapter->setDataCompany($user_uuid, $password, $timestamp, $rand, $company_uuid);
155
            $authAdapter->setDataCompany($user_uuid, $password, $timestamp, $rand, $company_uuid);
152
            
156