Fix Include footer link in project details when no record exists

This commit is contained in:
johnnyq 2025-11-02 12:49:24 -05:00
parent 0e9a071e96
commit 519975f3cf
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ if (isset($_GET['project_id'])) {
if (mysqli_num_rows($sql_project) == 0) {
echo "<center><h1 class='text-secondary mt-5'>Nothing to see here</h1><a class='btn btn-lg btn-secondary mt-3' href='projects.php'><i class='fa fa-fw fa-arrow-left'></i> Go Back</a></center>";
include_once "footer.php";
include_once "../includes/footer.php";
exit;
}