diff options
author | Sashi20 | 2024-07-29 15:52:33 +0530 |
---|---|---|
committer | GitHub | 2024-07-29 15:52:33 +0530 |
commit | 18dc7225c46cf7d208dd692a8c68b12b4f8f73e9 (patch) | |
tree | eaa4a8012136e7d68afdd5af61542721e8b89efb | |
parent | a0979b0e718db8d1d5567ba3b3dc02631f6adb3c (diff) | |
parent | 2197486dd1dc4a38b036a80d1a105ffa46889e34 (diff) | |
download | esim_research_migration-18dc7225c46cf7d208dd692a8c68b12b4f8f73e9.tar.gz esim_research_migration-18dc7225c46cf7d208dd692a8c68b12b4f8f73e9.tar.bz2 esim_research_migration-18dc7225c46cf7d208dd692a8c68b12b4f8f73e9.zip |
Merge pull request #10 from akshay9085/master
change textfield to textarea
-rwxr-xr-x | manage_proposal.inc | 2 | ||||
-rwxr-xr-x | proposal.inc | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/manage_proposal.inc b/manage_proposal.inc index b2b1976..4930095 100755 --- a/manage_proposal.inc +++ b/manage_proposal.inc @@ -871,7 +871,7 @@ function esim_research_migration_proposal_edit_form($form, &$form_state) '#default_value' => $proposal_data->project_title, ); $form['source_of_the_project'] = array( - '#type' => 'textfield', + '#type' => 'textarea', '#title' => t('Source of the Project'), '#default_value' => $proposal_data->source_of_the_project, // '#disabled' => TRUE, diff --git a/proposal.inc b/proposal.inc index 7dec2c7..c0dfdf1 100755 --- a/proposal.inc +++ b/proposal.inc @@ -258,10 +258,10 @@ function esim_research_migration_proposal_form($form, &$form_state, $no_js_use = ); $form['source_of_the_project'] = array( - '#type' => 'textfield', + '#type' => 'textarea', '#title' => t('Source of the Project'), - '#size' => 80, - '#maxlength' => 200, + // '#size' => 80, + // '#maxlength' => 200, '#required' => TRUE, '#attributes' => array( 'placeholder' => 'Insert the Journal name, title of proceedings (for conference papers) ' |