diff options
author | Sashi20 | 2020-10-23 15:33:31 +0530 |
---|---|---|
committer | Sashi20 | 2020-10-23 15:33:31 +0530 |
commit | 3407292c7c0696919fe74293a07f5dc529264b79 (patch) | |
tree | cdf4720a911db2fd9e3c486e02f2e3454941b5e0 | |
parent | 7de1c452f5c187b106a06dc4b691092c0b269466 (diff) | |
download | r_lab_migration-3407292c7c0696919fe74293a07f5dc529264b79.tar.gz r_lab_migration-3407292c7c0696919fe74293a07f5dc529264b79.tar.bz2 r_lab_migration-3407292c7c0696919fe74293a07f5dc529264b79.zip |
Increase lab title length in edit proposal form
-rwxr-xr-x | manage_proposal.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manage_proposal.inc b/manage_proposal.inc index 5820e06..1a140d0 100755 --- a/manage_proposal.inc +++ b/manage_proposal.inc @@ -860,8 +860,8 @@ function lab_migration_proposal_edit_form($form, $form_state) $form['lab_title'] = array( '#type' => 'textfield', '#title' => t('Title of the Lab'), - '#size' => 30, - '#maxlength' => 50, + '#size' => 100, + '#maxlength' => 255, '#required' => TRUE, '#default_value' => $proposal_data->lab_title ); @@ -902,7 +902,7 @@ function lab_migration_proposal_edit_form($form, $form_state) $form['lab_experiment_update' . $experiment_data->id] = array( '#type' => 'textfield', '#title' => t('Title of the Experiment ') . $counter, - '#size' => 50, + '#size' => 100, '#default_value' => $experiment_title ); $namefield = "lab_experiment_update" . $experiment_data->id; @@ -920,7 +920,7 @@ function lab_migration_proposal_edit_form($form, $form_state) $form['lab_experiment_insert' . $counter] = array( '#type' => 'textfield', '#title' => t('Title of the Experiment ') . $counter, - '#size' => 50, + '#size' => 100, '#required' => FALSE, '#default_value' => $experiment_title ); |