From 583d6f51ebe5fa9342ed4e9c3f2065cfad8a90d4 Mon Sep 17 00:00:00 2001 From: Janis Steiner Date: Mon, 14 Oct 2024 15:23:01 +0100 Subject: [PATCH] . --- sys0-code/app/debug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys0-code/app/debug.php b/sys0-code/app/debug.php index 3c3456f..1708f0f 100644 --- a/sys0-code/app/debug.php +++ b/sys0-code/app/debug.php @@ -344,7 +344,7 @@ async function delete_input(input,action,id,row){ $stmt->close(); } if(isset($_GET["high_usage"])) - $sql="select username, id, filament_usage from users where ((filament_usage*1.24)/1000) > 1000 ORDER BY filament_usage DESC"; + $sql="select username, id, filament_usage from users where filament_usage > 800 ORDER BY filament_usage DESC"; if(isset($_POST["username"])){ $username_search=htmlspecialchars($_POST["username"]); $sql="select username, id, filament_usage from users where username LIKE '%$username_search%' ORDER BY filament_usage DESC";