aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--Rpmdrake/gui.pm3
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index cd29e2c2..223f9a0c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- fix changelog highlighting
- makes --merge-all-rpmnew option slight faster
Version 5.34 - 13 May 2012, Pascal Terjan
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index 72428dea..f5c3677b 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -1041,7 +1041,8 @@ sub get_info {
#- the package information hasn't been loaded. Instead of rescanning the media, just give up.
exists $pkgs->{$key} or return [ [ N("Description not available for this package\n") ] ];
#- get the description if needed:
- exists $pkgs->{$key}{description} or slow_func($widget, sub { extract_header($pkgs->{$key}, $urpm, 'info') });
+
+ exists $pkgs->{$key}{description} or slow_func($widget, sub { extract_header($pkgs->{$key}, $urpm, 'info', version_release($pkgs->{$key}{pkg})) });
format_pkg_simplifiedinfo($pkgs, $key, $urpm, $descriptions);
}