diff options
author | prashantsinalkar | 2016-08-22 14:57:39 +0530 |
---|---|---|
committer | prashantsinalkar | 2016-08-22 14:57:39 +0530 |
commit | 1a7b4524e8d9d0b79da93091ff5e14ee7bb0ab54 (patch) | |
tree | e0eaad05c4227457cafd5df6fa80bc94a548d2ef | |
parent | 114dd4c0d301469cd3a2ecb44edda32f61768e34 (diff) | |
download | scilab_textbook_companion-1a7b4524e8d9d0b79da93091ff5e14ee7bb0ab54.tar.gz scilab_textbook_companion-1a7b4524e8d9d0b79da93091ff5e14ee7bb0ab54.tar.bz2 scilab_textbook_companion-1a7b4524e8d9d0b79da93091ff5e14ee7bb0ab54.zip |
added call by reference and modified text
-rwxr-xr-x | settings.inc | 6 |
1 files 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 @@ <?php // $Id$ -function textbook_companion_settings_form($form_state) +function textbook_companion_settings_form($form,&$form_state) { $form['emails'] = array( '#type' => '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, |