From 202f7d7f5aa755314526a6c0205902d05112f280 Mon Sep 17 00:00:00 2001 From: Alexander Walther Date: Sat, 4 Jan 2025 01:23:26 +0100 Subject: [PATCH] `index`-Feld: String erlauben closes #1541 --- lib/yform/value/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/yform/value/index.php b/lib/yform/value/index.php index 5b14b26e..02eb1afd 100644 --- a/lib/yform/value/index.php +++ b/lib/yform/value/index.php @@ -33,6 +33,8 @@ public function postFormAction(): void if (isset($this->params['value_pool']['sql'][$name])) { $value .= ' ' . $this->params['value_pool']['sql'][$name]; continue; + } else { + $value .= trim($name, '"\''); } $name = explode('.', $name);