Replaced t() call with bts() in status message

(DBOINCP-141)
This commit is contained in:
Tristan Olive 2015-06-12 13:14:15 -04:00
parent 4c04dca0d5
commit 8e33b034a0
1 changed files with 2 additions and 2 deletions

View File

@ -1600,7 +1600,7 @@ function communityprefs_form_submit($form, &$form_state) {
global $user;
$account = user_load($user->uid);
$boinc_user = BoincUser::lookup_id($account->boincuser_id);
$edit= $form_state['values'];
$edit = $form_state['values'];
$profile_node = $form_state['storage']['profile_node'];
// Display name
@ -1647,7 +1647,7 @@ function communityprefs_form_submit($form, &$form_state) {
}
user_save($user, $settings);
drupal_set_message(t('Your community preferences have been updated.'));
drupal_set_message(bts('Your community preferences have been updated.'));
// Form will not redirect if storage is set; not good if language changes
unset($form_state['storage']);