diff options
Diffstat (limited to 'include/selectors.php')
-rw-r--r-- | include/selectors.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/selectors.php b/include/selectors.php index d58ef1085..57a9db480 100644 --- a/include/selectors.php +++ b/include/selectors.php @@ -1,7 +1,7 @@ <?php /** @file */ -function contact_profile_assign($current) { +function contact_profile_assign($current, $label = '') { $r = q("SELECT profile_guid, profile_name FROM profile WHERE uid = %d", intval($_SESSION['uid']) @@ -13,9 +13,13 @@ function contact_profile_assign($current) { } } + if (!$label) { + $label = t('Select a profile to assign to this contact'); + } + $select = [ 'profile_assign', - t('Select a profile to assign to this contact'), + $label, $current, '', $options |