partially implemented todo tracker

This commit is contained in:
2025-04-20 17:05:41 -06:00
parent 9e47110758
commit ab30859446
29 changed files with 546 additions and 157 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ foreach (glob('components/admin/*.php') as $file)
include_once 'components/head.php';
if (!isset($_SESSION['role_id']))
header('Location: user.php');
else if ($_SESSION['role_id'] >= 3)
header('Location: user.php?view=login');
else if ($_SESSION['role_id'] >= contributor)
header('Location: user.php?action=view&user_id=' . $_SESSION['user_id']);
include_once 'functions/admin_functions.php';