summaryrefslogtreecommitdiff
path: root/includes/view/User_view.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-11-19 16:41:20 +0100
committermsquare <msquare@notrademark.de>2017-11-19 16:41:20 +0100
commitb95d4ece8ab28ff4821a8aeb471396ed30a94912 (patch)
tree005ad5fcb0c0824ae3da86ec33afc07e6a6c3166 /includes/view/User_view.php
parente188d12ad6dd894c5ab3f81ca30e8f8443d11794 (diff)
increase readability of hints with links, refs #357
Diffstat (limited to 'includes/view/User_view.php')
-rw-r--r--includes/view/User_view.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/view/User_view.php b/includes/view/User_view.php
index fb8715b7..cb2af7c0 100644
--- a/includes/view/User_view.php
+++ b/includes/view/User_view.php
@@ -657,7 +657,7 @@ function render_user_departure_date_hint()
if (!isset($user['planned_departure_date']) || $user['planned_departure_date'] == null) {
$text = _('Please enter your planned date of departure on your settings page to give us a feeling for teardown capacities.');
- return render_profile_link($text);
+ return render_profile_link($text, null, 'alert-link');
}
return null;
@@ -705,7 +705,7 @@ function render_user_tshirt_hint()
if (config('enable_tshirt_size') && $user['Size'] == '') {
$text = _('You need to specify a tshirt size in your settings!');
- return render_profile_link($text);
+ return render_profile_link($text, null, 'alert-link');
}
return null;
@@ -720,7 +720,7 @@ function render_user_dect_hint()
if ($user['DECT'] == '') {
$text = _('You need to specify a DECT phone number in your settings! If you don\'t have a DECT phone, just enter \'-\'.');
- return render_profile_link($text);
+ return render_profile_link($text, null, 'alert-link');
}
return null;