diff options
Diffstat (limited to 'LedgerSMB/IR.pm')
-rwxr-xr-x | LedgerSMB/IR.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/IR.pm b/LedgerSMB/IR.pm index 2f794824..c3766227 100755 --- a/LedgerSMB/IR.pm +++ b/LedgerSMB/IR.pm @@ -1194,7 +1194,7 @@ sub retrieve_item { } if ($form->{"description_$i"} ne "") { - $var = $dbh->quote($form->$like(lc $form->{"description_$i"})); + $var = $dbh->quote($form->like(lc $form->{"description_$i"})); if ($form->{language_code} ne "") { $where .= " AND lower(t1.description) LIKE $var"; } else { |