diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | rpmdrake | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -9,6 +9,7 @@ * default to OR like searches for searches among package names (#37643) * enable to disable use of regular expression (default is: disabled) * enable to search in full or short package names (#46473) + * fix searching for summary on startup (#49293) * rerun search after reloading package list (#49834) Version 5.17 - 1 June 2009, Thierry Vignaud @@ -90,7 +90,7 @@ sub do_search($$$$$$$) { } elsif ($current_search_type eq 'summaries') { my $count; foreach (@filtered_pkgs) { - next if $pkgs->{$_}{summary} !~ /$entry_rx/; + next if get_summary($_) !~ /$entry_rx/; push @search_results, $_; # FIXME: should be done for all research types last if $count++ > 2000; |