From 519975f3cf97dc9dca4c372dc8a32417a0877c31 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sun, 2 Nov 2025 12:49:24 -0500 Subject: [PATCH] Fix Include footer link in project details when no record exists --- agent/project_details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/project_details.php b/agent/project_details.php index 0b96afdf..aae859fa 100644 --- a/agent/project_details.php +++ b/agent/project_details.php @@ -41,7 +41,7 @@ if (isset($_GET['project_id'])) { if (mysqli_num_rows($sql_project) == 0) { echo "

Nothing to see here

Go Back
"; - include_once "footer.php"; + include_once "../includes/footer.php"; exit; }