summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSashi202024-03-28 11:24:43 +0530
committerSashi202024-03-28 11:24:43 +0530
commite2f0424ad12adcc402fcb880123c3877ecc2afa3 (patch)
treeee0bb64834138f2eb8f20a6440a0ba762f0f744a
parenta9791a1d671b8eb49e18defdcd0f4b0d78753cf5 (diff)
downloadr_case_study-e2f0424ad12adcc402fcb880123c3877ecc2afa3.tar.gz
r_case_study-e2f0424ad12adcc402fcb880123c3877ecc2afa3.tar.bz2
r_case_study-e2f0424ad12adcc402fcb880123c3877ecc2afa3.zip
Update raw data field title
-rwxr-xr-xproposal.inc8
1 files changed, 6 insertions, 2 deletions
diff --git a/proposal.inc b/proposal.inc
index 54ccec5..2430754 100755
--- a/proposal.inc
+++ b/proposal.inc
@@ -299,7 +299,7 @@ function r_case_study_proposal_form($form, &$form_state, $no_js_use = FALSE)
'#title' => t('Case Study Title'),
'#size' => 250,
'#maxlength' => 100,
- '#description' => t('Maximum character limit is 500'),
+ '#description' => t('Maximum character limit is 100'),
'#required' => TRUE,
);
$form['description'] = array(
@@ -310,9 +310,13 @@ function r_case_study_proposal_form($form, &$form_state, $no_js_use = FALSE)
'#description' => t('Maximum character limit is 1200'),
'#required' => TRUE,
);
+ $form['raw_data_title'] = array(
+ '#type' => 'item',
+ '#title' => t('<h5>Data Submission</h5>'),
+ );
$form['raw_data_file'] = array(
'#type' => 'fieldset',
- '#title' => t('Submit the data directory files (Upload raw data (in .csv)/Data Description File (in .pdf)/ Data Source Link (in .txt))<span style="color:red">*</span>'),
+ '#title' => t('Upload raw data (in .csv)/Data Description File (in .pdf)/ Data Source Link (in .txt)<span style="color:red">*</span>'),
'#collapsible' => FALSE,
'#collapsed' => FALSE
);