update validation message

This commit is contained in:
ghost 2023-12-18 06:56:19 +02:00
parent 36e4f4d6dc
commit 7550d8fd82

View File

@ -218,7 +218,7 @@ class UserController extends AbstractController
'user_add', 'user_add',
[ [
'username' => $request->get('username'), 'username' => $request->get('username'),
'error' => $translator->trans('Could not access user database, try again later!') 'error' => $translator->trans('Could not access user database locked by transaction, try again later!')
] ]
); );
} }
@ -461,7 +461,7 @@ class UserController extends AbstractController
'user_login', 'user_login',
[ [
'username' => $request->get('username'), 'username' => $request->get('username'),
'error' => $translator->trans('Could not access user database, try again later!') 'error' => $translator->trans('Could not access user database locked by transaction, try again later!')
] ]
); );
} }