Skip to content

Commit

Permalink
FIX #29756 Sql error on comment search (#29761)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspangaro authored May 28, 2024
1 parent 727a502 commit 3ebbfc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/accountancy/expensereport/lines.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
$sql .= natural_search("f.label", $search_label);
}
if (strlen(trim($search_desc))) {
$sql .= natural_search("er.comments", $search_desc);
$sql .= natural_search("erd.comments", $search_desc);
}
if (strlen(trim($search_amount))) {
$sql .= natural_search("erd.total_ht", $search_amount, 1);
Expand Down

0 comments on commit 3ebbfc6

Please sign in to comment.