From: G. Richardson Date: Tue, 12 Jul 2016 11:08:19 +0000 (+0200) Subject: Typos in Doku X-Git-Tag: release-3.5.4~2217 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;ds=sidebyside;h=4b65183fea159f1912c806b159cee0fbbcbe7f46;hp=e63bbc9fa291b69315dec89dd51e7ef18a2e0448;p=kivitendo-erp.git Typos in Doku --- diff --git a/SL/DB/Helper/CustomVariables.pm b/SL/DB/Helper/CustomVariables.pm index 9de839496..3869f1613 100644 --- a/SL/DB/Helper/CustomVariables.pm +++ b/SL/DB/Helper/CustomVariables.pm @@ -330,7 +330,7 @@ sub make_cvar_custom_filter { # remove rose aliases. query builder sadly is not reentrant, and will reuse the same aliases. :( $query{$key} =~ s{\bt\d+(?:\.)?\b}{}g; - # manually inline the values. again, rose doen't know how to handle bind params in subqueries :( + # manually inline the values. again, rose doesn't know how to handle bind params in subqueries :( $query{$key} =~ s{\?}{ $config->dbh->quote(shift @{ $bind_vals{$key} }) }xeg; $query{$key} =~ s{\n}{ }g;