This commit is contained in:
2024-10-28 13:49:44 +04:00
parent d2295a6328
commit 761bc9a441
2 changed files with 6 additions and 1 deletions
@@ -417,4 +417,7 @@ function markForIntervention($id, $pdo)
$stmt->execute(['id' => $id]);
$query = "INSERT INTO notifications (`title`,`description`) VALUES ('Intervention Required', 'Intervention required for JSON entry with ID $id')";
$stmt = $pdo->prepare($query);
$stmt->execute();
}