diff --git a/alma.module b/alma.module
index 2f92b8c..4f6ae8e 100644
--- a/alma.module
+++ b/alma.module
@@ -707,13 +707,13 @@ function alma_profile2_load($entities) {
/**
* Implements hook_field_attach_view_alter().
*
- * Alter user profile view with SMS TAX.
+ * Alter user profile view with SMS fee.
*/
function alma_field_attach_view_alter(&$output, $context) {
if (isset($output['field_alma_sms'][0]['#markup'])) {
- $ding_user_tax_sms = variable_get('ding_user_tax_sms', t('Notice that there is a fee for receiving a SMS'));
- if ($ding_user_tax_sms) {
- $output['field_alma_sms'][0]['#markup'] .= '(' . $ding_user_tax_sms . ')';
+ $ding_user_fee_sms = variable_get('ding_user_fee_sms', t('Notice that there is a fee for receiving a SMS'));
+ if ($ding_user_fee_sms) {
+ $output['field_alma_sms'][0]['#markup'] .= '(' . $ding_user_fee_sms . ')';
}
}
}