From bd13e66e188d528dc788b47d147a6cabce1273e4 Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Fri, 2 Jan 2026 01:28:52 +0100 Subject: [PATCH] asd --- src/App/Search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Search.php b/src/App/Search.php index c096a19..ce48afa 100644 --- a/src/App/Search.php +++ b/src/App/Search.php @@ -85,7 +85,7 @@ final class Search $stmt = $this->pdo->prepare($sql); foreach ($bind as $name => $value) { - $paramName = $name[0] === ':' ? $name : ':' . $name; + echo $paramName = $name[0] === ':' ? $name : ':' . $name; $type = is_int($value) ? \PDO::PARAM_INT : \PDO::PARAM_STR; $stmt->bindValue($paramName, $value, $type); }