From c74a2fff72df4ffa09071c61fcf5bae6853ed663 Mon Sep 17 00:00:00 2001 From: Rosanny <rosanny.sihombing@hft-stuttgart.de> Date: Fri, 20 Mar 2020 16:00:33 +0100 Subject: [PATCH] fix bug MLAB-146 --- routes/routes-account.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/routes-account.js b/routes/routes-account.js index 48de0f0f..41af5110 100644 --- a/routes/routes-account.js +++ b/routes/routes-account.js @@ -247,7 +247,8 @@ module.exports = function (app, config, passport, i18n) { req.flash('error', "Failed"); } else { - req.flash('success', 'Profile updated!'); + //req.flash('success', 'Profile updated!'); + req.flash('success', 'Ihr Benutzerprofil wurde aktualisiert!'); } res.redirect('/profile'); }) -- GitLab