dateInsert

This commit is contained in:
Michael RICOIS 2015-08-24 15:13:21 +00:00
parent f5a8d55d0f
commit cc891e2077

View File

@ -684,8 +684,11 @@ class Scores_Ws_Server
else {
$sql->where('u.login=?', $login);
}
$resultId = $userM->fetchAll($sql);
try {
$resultId = $userM->fetchAll($sql);
} catch (Zend_Db_Exception $e) {
}
/**
* No user, deleted or disable
*/
@ -1122,6 +1125,7 @@ class Scores_Ws_Server
'login' => $login,
'authenticate' => $authenticate,
'ip' => $ip,
'dateInsert' => date('YmdHis'),
);
try {
$authLogM = new Application_Model_Sdv1UtilisateursAuthLog();