diff options
author | msquare <msquare@notrademark.de> | 2016-11-15 16:31:55 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-11-15 16:31:55 +0100 |
commit | 918d41ca70a7ca1fd59785c31fdf6e0bf39470e9 (patch) | |
tree | e501824b8c69f6a015824e3fd77e6e5cd1c7ffb3 /includes/controller/user_driver_licenses_controller.php | |
parent | ec6016cd38fc5ce6455cace6ffbc703f78f31096 (diff) |
reduce complexity of menu and hints
Diffstat (limited to 'includes/controller/user_driver_licenses_controller.php')
-rw-r--r-- | includes/controller/user_driver_licenses_controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/controller/user_driver_licenses_controller.php b/includes/controller/user_driver_licenses_controller.php index fc2f4916..595fc3b6 100644 --- a/includes/controller/user_driver_licenses_controller.php +++ b/includes/controller/user_driver_licenses_controller.php @@ -16,7 +16,7 @@ function user_driver_license_required_hint() { foreach ($angeltypes as $angeltype) { if ($angeltype['requires_driver_license']) { - return info(sprintf(_("You joined an angeltype which requires a driving license. Please edit your driving license information here: %s."), '<a href="' . user_driver_license_edit_link() . '">' . _("driving license information") . '</a>'), true); + return sprintf(_("You joined an angeltype which requires a driving license. Please edit your driving license information here: %s."), '<a href="' . user_driver_license_edit_link() . '">' . _("driving license information") . '</a>'); } } |