diff options
author | akshaythakur8764 | 2024-07-29 14:02:35 +0530 |
---|---|---|
committer | akshaythakur8764 | 2024-07-29 14:02:35 +0530 |
commit | ae99576286840c25f670a1e808da6b9986467306 (patch) | |
tree | 81996054092949add10e462729c841d9889c9ed3 | |
parent | 92bdc4538e363dce4a107644feb984f5836e2ddc (diff) | |
download | esim_research_migration-ae99576286840c25f670a1e808da6b9986467306.tar.gz esim_research_migration-ae99576286840c25f670a1e808da6b9986467306.tar.bz2 esim_research_migration-ae99576286840c25f670a1e808da6b9986467306.zip |
textfield to textarea
-rwxr-xr-x | manage_proposal.inc | 2 | ||||
-rwxr-xr-x | proposal.inc | 4 |
2 files changed, 3 insertions, 3 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..ff87cbb 100755 --- a/proposal.inc +++ b/proposal.inc @@ -260,8 +260,8 @@ function esim_research_migration_proposal_form($form, &$form_state, $no_js_use = $form['source_of_the_project'] = array( '#type' => 'textfield', '#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) ' |