diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | control-center | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- fix not displaying contributors in about dialog (mga#13093) + Version 12.51 - 25 January 2014, Colin Guthrie - do not exec pkexec but run it so it has a parent process to fix double fork diff --git a/control-center b/control-center index f0ff8c4c..b56e93ba 100755 --- a/control-center +++ b/control-center @@ -1450,7 +1450,7 @@ sub about_mga_cc() { my ($previous_type, $not_first_title, $not_first_block); my $locale = lang::read; require Gtk2::Pango; - foreach my $line (grep { $_ ne "\n" && !/^#/ } cat_(top(glob("/usr/share/doc/mageia-release-*/CREDITS.$locale->{lang}")))) { + foreach my $line (grep { $_ ne "\n" && !/^#/ } cat_(top(glob("/usr/share/doc/mageia-release-*/CREDITS"), glob("/usr/share/doc/mageia-release-*/CREDITS.$locale->{lang}")))) { if (my ($type, $comment, $contributor) = split(/\|/, $line, 3)) { last if !$type; $comment =~ s/^ //; # fix initial space of first section (CREDITS format should be enhanced to specify lines that really are sections) |