From 1ce5cf961108eb99167f37114d6a797d31ca23c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Wed, 27 Jan 2021 12:18:26 +0100 Subject: [PATCH] POD fix: Rose Syntax im Beispiel Vergleichsoperatoren werden als Hash-Ref angegeben. --- SL/Controller/Helper/ParseFilter.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/Controller/Helper/ParseFilter.pm b/SL/Controller/Helper/ParseFilter.pm index 8b68ee56e..f91d671f3 100644 --- a/SL/Controller/Helper/ParseFilter.pm +++ b/SL/Controller/Helper/ParseFilter.pm @@ -297,8 +297,8 @@ customer. L allows you to search for these by filtering them p query => [ 'customer.name' => 'John Doe', - 'department.description' => [ ilike => '%Sales%' ], - 'orddate' => [ lt => DateTime->today ], + 'department.description' => { ilike => '%Sales%' }, + 'orddate' => { lt => DateTime->today }, ] Unfortunately, if you specify them in your form as these strings, the form -- 2.20.1