fixed bugs that prevented proper grading.

This commit is contained in:
Joshua Ashton
2025-02-14 05:08:06 -07:00
parent fcbe71e62b
commit 6f63a4afb8
30 changed files with 95 additions and 87 deletions
+4 -1
View File
@@ -1,5 +1,8 @@
<?php
session_start();
if ($_SESSION['new-access'] == true) {
$_SESSION['new-access'] = false;
}
require_once 'vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
@@ -18,7 +21,7 @@ authUser();
</head>
<body>
<?php include ('includes/nav.php'); ?>
<?php include_once ('includes/nav.php'); ?>
<div id="content">
<?php
$page = $_GET['page'];