diff options
author | Saketh1499 | 2021-09-09 10:15:02 +0530 |
---|---|---|
committer | Saketh1499 | 2021-09-09 10:15:02 +0530 |
commit | 6d9bc634eb0a9220ee367d984a252fd954807ca7 (patch) | |
tree | 66bd3ad6311ebeb8111854454be42de5025d4135 | |
parent | 94a8e234373df9808982b1801c10c0e0e4761b31 (diff) | |
download | soul_chemistry_lab_project-6d9bc634eb0a9220ee367d984a252fd954807ca7.tar.gz soul_chemistry_lab_project-6d9bc634eb0a9220ee367d984a252fd954807ca7.tar.bz2 soul_chemistry_lab_project-6d9bc634eb0a9220ee367d984a252fd954807ca7.zip |
Updating the charater minimum limit value
-rwxr-xr-x | proposal.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proposal.inc b/proposal.inc index f27a4a1..32ccdf9 100755 --- a/proposal.inc +++ b/proposal.inc @@ -449,7 +449,7 @@ function chemistry_lab_proposal_form_validate($form, &$form_state) } //strlen($form_state['values']['project_title']) > 250 else if (strlen($form_state['values']['description']) < 250) { - form_set_error('description', t('Minimum charater limit is 500 charaters, please check the length of the description')); + form_set_error('description', t('Minimum charater limit is 250 charaters, please check the length of the description')); } //strlen($form_state['values']['project_title']) < 10 } //$form_state['values']['project_title'] != '' else |