@@ -, +, @@ --- C4/Reports/Guided.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/C4/Reports/Guided.pm +++ a/C4/Reports/Guided.pm @@ -641,13 +641,12 @@ sub get_saved_reports { } if (my $keyword = $filter->{keyword}) { push @cond, q| - report LIKE ? - OR report_name LIKE ? + report_name LIKE ? OR notes LIKE ? OR savedsql LIKE ? OR s.id = ? |; - push @args, "%$keyword%", "%$keyword%", "%$keyword%", "%$keyword%", $keyword; + push @args, "%$keyword%", "%$keyword%", "%$keyword%", $keyword; } if ($filter->{group}) { push @cond, "report_group = ?"; --