From 971e7ad3072c31fae16cc165645f4a1e6bbc3b9a Mon Sep 17 00:00:00 2001
From: akshay9085
Date: Fri, 25 Aug 2023 18:16:04 +0530
Subject: Capitalise the first letters of table header and displayed text
---
science_and_concept_map_details.inc | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/science_and_concept_map_details.inc b/science_and_concept_map_details.inc
index fcb1d93..d0ea026 100755
--- a/science_and_concept_map_details.inc
+++ b/science_and_concept_map_details.inc
@@ -13,12 +13,12 @@ function science_and_concept_map_completed_proposals_all()
//var_dump($soul_project_abstract);die;
if ($result->rowCount() == 0)
{
- $output .= "Work has been completed for the following science and concept map. We welcome your contributions." ."
";
+ $output .= "We welcome your contributions." ."
";
} //$result->rowCount() == 0
else
{
- $output .= "Work has been completed for the following science and concept map. We welcome your contributions." . "
";
+ $output .= "Work has been completed for the following Science and Concept Map." . "
";
$preference_rows = array();
$i = $result->rowCount();
while ($row = $result->fetchObject())
@@ -65,12 +65,12 @@ function science_and_concept_map_progress_all()
$result = $query->execute();
if ($result->rowCount() == 0)
{
- $page_content .= "Work is in progress for the following science and concept map under science and concept map Project
";
+ $page_content .= "We welcome your contributions.
";
} //$result->rowCount() == 0
else
{
$i = $result->rowCount();
- $page_content .= "Work is in progress for the following science and concept map under science and concept map Project
";
+ $page_content .= "Work is in progress for the following Science and Concept Map
";
$preference_rows = array();
// $i = 1;
while ($row = $result->fetchObject())
@@ -87,7 +87,7 @@ function science_and_concept_map_progress_all()
} //$row = $result->fetchObject()
$preference_header = array(
'No',
- 'science and concept map Project',
+ 'Science and Concept Map Project',
'Contributor Name',
'Institute',
'Year'
--
cgit