This commit is contained in:
2025-12-29 01:49:54 +01:00
parent da82fe679f
commit f730c20082
2 changed files with 4 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ if ($q !== '' && $pdo) {
ORDER BY starts_at ASC
LIMIT 100'
);
$stmt->execute([':q' => $like]);
$stmt->execute(['q' => $like]);
$results = $stmt->fetchAll(PDO::FETCH_ASSOC) ?: [];
}
?>