From 78784dd822cf0ebdb3321b75d56000bdf924105e Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Fri, 2 Jan 2026 00:42:47 +0100 Subject: [PATCH] sadsad --- src/App/Search.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/App/Search.php b/src/App/Search.php index 5f1963a..19ec9c6 100644 --- a/src/App/Search.php +++ b/src/App/Search.php @@ -83,8 +83,11 @@ final class Search $sql .= " LIMIT :lim"; $bind['lim'] = (int)$limit; + + echo $sql; + exit; $stmt = $this->pdo->prepare($sql); - $stmt->execute($bind); - return $stmt->fetchAll(\PDO::FETCH_ASSOC) ?: []; +//$stmt->execute($bind); +// return $stmt->fetchAll(\PDO::FETCH_ASSOC) ?: []; } }