From 9f295e31364b0ea585028bcda22237b660c4e703 Mon Sep 17 00:00:00 2001 From: Joshua Rogers Date: Sat, 6 Sep 2025 18:49:30 +0200 Subject: [PATCH] Do not allow inactive users to use the application. --- requesthandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/requesthandler.php b/requesthandler.php index bd8e3ea..6c54afa 100644 --- a/requesthandler.php +++ b/requesthandler.php @@ -39,6 +39,7 @@ if(!$active_user->active) { require('views/error403.php'); + die; } if(!empty($_POST)) {