diff options
author | Saketh1499 | 2021-09-13 10:11:15 +0530 |
---|---|---|
committer | Saketh1499 | 2021-09-13 10:11:15 +0530 |
commit | c0cbfd1054313ba1c0f5b33c5a81207cf904ccb2 (patch) | |
tree | 7c5631be482606bf3ee128b10e7cad9dad26d026 | |
parent | 12080f069d8b46f3cd66a463e640243ccec6fffa (diff) | |
download | fellowship_testimonials-c0cbfd1054313ba1c0f5b33c5a81207cf904ccb2.tar.gz fellowship_testimonials-c0cbfd1054313ba1c0f5b33c5a81207cf904ccb2.tar.bz2 fellowship_testimonials-c0cbfd1054313ba1c0f5b33c5a81207cf904ccb2.zip |
Updating activity section
-rw-r--r-- | testimonials_add.inc | 4 | ||||
-rw-r--r-- | testimonials_edit.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/testimonials_add.inc b/testimonials_add.inc index c9ee47c..920cb43 100644 --- a/testimonials_add.inc +++ b/testimonials_add.inc @@ -18,8 +18,8 @@ function fellowship_testimonials_add_form($form,$form_state, $no_js_use = FALSE, "#type" => 'select', "#title" => t('Select Activity'), "#options" => array( - 'S' => 'Semster-long internship', - 'F' => 'Fossee Summer fellowship' + 'Semster-long internship' => 'Semster-long internship', + 'Fossee Summer fellowship' => 'Fossee Summer fellowship' ), "#required" => TRUE, ); diff --git a/testimonials_edit.inc b/testimonials_edit.inc index 83ea9c1..e6e407f 100644 --- a/testimonials_edit.inc +++ b/testimonials_edit.inc @@ -18,8 +18,8 @@ function fellowship_testimonials_edit_form($form,$form_state, $testimonial_id = "#type" => 'select', "#title" => t('Select Activity'), "#options" => array( - 'S' => 'Semster-long internship', - 'F' => 'Fossee Summer fellowship' + 'Semster-long internship' => 'Semster-long internship', + 'Fossee Summer fellowship' => 'Fossee Summer fellowship' ), "#required" => TRUE, '#default_value' => $row->activity, |