From 1a7b4524e8d9d0b79da93091ff5e14ee7bb0ab54 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Mon, 22 Aug 2016 14:57:39 +0530 Subject: added call by reference and modified text --- settings.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings.inc b/settings.inc index e0ccaf3..5929cdc 100755 --- a/settings.inc +++ b/settings.inc @@ -1,11 +1,11 @@ 'textfield', '#title' => t('Notification emails'), - '#description' => t('A comma separated list of email addresses to receive notifications emails'), + '#description' => t('A comma separated list of email addresses to receive notifications emails [bcc]'), '#size' => 50, '#maxlength' => 255, '#required' => TRUE, @@ -32,7 +32,7 @@ function textbook_companion_settings_form($form_state) $form['cc_emails'] = array( '#type' => 'textfield', '#title' => t('(Cc) Notification emails'), - '#description' => t('Specify emails id for Cc option of mail system with comma separated'), + '#description' => t('Specify emails id for CC option of mail system with comma separated'), '#size' => 50, '#maxlength' => 255, '#required' => TRUE, -- cgit