diff --git a/src/server/cyberhex-code/system/secure_zone/php/client_settings_functions.php b/src/server/cyberhex-code/system/secure_zone/php/client_settings_functions.php index ff07f2f..45fa4f8 100644 --- a/src/server/cyberhex-code/system/secure_zone/php/client_settings_functions.php +++ b/src/server/cyberhex-code/system/secure_zone/php/client_settings_functions.php @@ -94,7 +94,7 @@ function safe_settings(){ } if($_GET["update"]=="system_tasks"){ $id=htmlspecialchars($_GET["id"]); - $stmt = $conn->prepare("UPDATE system_task set task = ? WHERE id=$id"); + $stmt = $conn->prepare("UPDATE system_tasks set task = ? WHERE id=$id"); $stmt->bind_param("s",$value); $stmt->execute(); $stmt->close();