diff options
author | msquare <msquare@notrademark.de> | 2017-12-29 13:09:35 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-12-29 13:09:35 +0100 |
commit | b59d17918eac02e607ca6ca5919dfe96ee1bbfd3 (patch) | |
tree | 96845d495cda4b2c94983579a88db7286e8e535c | |
parent | 1a22a6d410d5bfa1743d10398ec8b1c433bd1deb (diff) |
small improvements of user view
-rw-r--r-- | includes/controller/users_controller.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/controller/users_controller.php b/includes/controller/users_controller.php index aca20a2c..5bc2e06f 100644 --- a/includes/controller/users_controller.php +++ b/includes/controller/users_controller.php @@ -227,8 +227,9 @@ function user_controller() if($user_source['force_active']) { $tshirt_score = _('Enough'); + success(_('You have done enough to get a t-shirt.')); } else { - $tshirt_score = round(User_tshirt_score($user_source), 2) . 'h'; + $tshirt_score = round(User_tshirt_score($user_source), 2) . ' h'; } return [ |