From 13f8a513d4651918b95a825dd252b69a6ad7711e Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Wed, 12 Mar 2014 17:36:55 +0100 Subject: fix error messages on password recovery --- includes/controller/users_controller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/controller') diff --git a/includes/controller/users_controller.php b/includes/controller/users_controller.php index c5c437ca..bf83fa9e 100644 --- a/includes/controller/users_controller.php +++ b/includes/controller/users_controller.php @@ -49,15 +49,15 @@ function user_password_recovery_controller() { engelsystem_error("Unable to load user."); if ($user_source == null) { $ok = false; - $msg .= error(_("E-mail address is not correct."), true); + error(_("E-mail address is not correct.")); } } else { $ok = false; - $msg .= error(_("E-mail address is not correct."), true); + error(_("E-mail address is not correct.")); } } else { $ok = false; - $msg .= error(_("Please enter your e-mail."), true); + error(_("Please enter your e-mail.")); } if ($ok) { -- cgit v1.2.3-54-g00ecf