From f8b3bd5515725870d285a7ed659247fdfdabadde Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Fri, 15 Dec 2023 22:29:49 +0530 Subject: [PATCH] (refactor): updated projectitem text color --- htdocs/projects.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/projects.php b/htdocs/projects.php index 830cb09..3923b0e 100644 --- a/htdocs/projects.php +++ b/htdocs/projects.php @@ -97,7 +97,7 @@ $years = create_project_years_array($conn); //fetch all projects by year and show it while ($project = $projects -> fetch_assoc()) { echo " - ".$project['name'].($project['shortdes'] != "" ? ' - '. $project['shortdes'] : '')." + ".$project['name'].($project['shortdes'] != "" ? ' - '. $project['shortdes'] : '')." "; }