From a9791a1d671b8eb49e18defdcd0f4b0d78753cf5 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Thu, 28 Mar 2024 11:04:50 +0530 Subject: Update field names in manage proposal forms --- manage_proposal.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manage_proposal.inc b/manage_proposal.inc index 4c90af0..7b83ef2 100755 --- a/manage_proposal.inc +++ b/manage_proposal.inc @@ -309,7 +309,7 @@ function r_case_study_proposal_approval_form($form, &$form_state) $form['description'] = array( '#type' => 'item', '#markup' => $proposal_data->description, - '#title' => t('Objective') + '#title' => t('Objective and Necessity of the Case Study') ); $form['literature_survey_file'] = array( '#type' => 'item', @@ -318,7 +318,7 @@ function r_case_study_proposal_approval_form($form, &$form_state) ); $form['abstract_file'] = array( '#type' => 'item', - '#markup' => l('View abstract', 'case-study-project/download/proposal-abstract-files/' . $proposal_data->id), + '#markup' => l('View Methodology details', 'case-study-project/download/proposal-abstract-files/' . $proposal_data->id), '#title' => t('Abstract File') ); $form['rawdata_file'] = array( @@ -599,7 +599,7 @@ function r_case_study_proposal_status_form($form, &$form_state) $form['description'] = array( '#type' => 'item', '#markup' => $proposal_data->description, - '#title' => t('Objective') + '#title' => t('Objective and Necessity of the Case Study') ); /*$url = '~(?:(https?)://([^\s<]+)|(www\.[^\s<]+?\.[^\s<]+))(?$0', $re);*/ @@ -991,13 +991,13 @@ function r_case_study_proposal_edit_form($form, &$form_state) '#type' => 'textfield', '#title' => t('Title of the Case Study Project'), '#size' => 300, - '#maxlength' => 500, + '#maxlength' => 100, '#required' => true, '#default_value' => $proposal_data->project_title, ); $form['description'] = array( '#type' => 'textarea', - '#title' => t('Objective'), + '#title' => t('Objective and Necessity of the Case Study'), '#size' => 300, '#maxlength' => 1200, '#required' => true, -- cgit