working on translations
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -376,12 +376,12 @@ public class Web extends TemplateServlet {
|
||||
if (token != null){
|
||||
try {
|
||||
user = User.byToken(req.getParameter(TOKEN));
|
||||
if (user == null) return loadTemplate(path,Map.of(ERROR,"Failed to find user for token!"),resp);
|
||||
if (user == null) return loadTemplate(path,Map.of(ERROR,t("Failed to find user for token!")),resp);
|
||||
user.dropPasswordToken();
|
||||
req.getSession().setAttribute("user",user);
|
||||
return redirectTo(NEW_PASSWORD_FORM,resp);
|
||||
} catch (SQLException sqle){
|
||||
return loadTemplate(path,Map.of(ERROR,"Failed to add user for token!"),resp);
|
||||
return loadTemplate(path,Map.of(ERROR,t("Failed to add user for token!")),resp);
|
||||
}
|
||||
}
|
||||
var email = req.getParameter(EMAIL);
|
||||
|
||||
Reference in New Issue
Block a user