diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/display_installer_help | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1db139ec7..268c22983 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,7 @@ o add a warning about QWERTY keyboard - help dialogs: o do warn on first screenshot (mga#11176) + o fix lost help screenshots (mga#11176) Version 16.26.3 - 21 January 2014 diff --git a/perl-install/standalone/display_installer_help b/perl-install/standalone/display_installer_help index 2a395daec..1e9de23cb 100755 --- a/perl-install/standalone/display_installer_help +++ b/perl-install/standalone/display_installer_help @@ -23,6 +23,7 @@ use any; use lang; # so that screenshots works: +$::prefix = '/mnt'; use install::any; $::isInstall = 1; @@ -33,7 +34,6 @@ any::set_wm_hints_if_needed($in); # Fake enough $o for retrieving the proper translation: $::o = $in; $::o->{locale}{lang} = $ARGV[1]; -$::prefix = '/'; lang::set($::o->{locale}); $in->display_help_window({ interactive_help_id => $ARGV[0] }); |