diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/standalone/drakhelp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 6f81f3451..2e5b34c2e 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -5,6 +5,8 @@ with the same fraction (eg #30090) - diskdrake: o when formatting ntfs don't zero partition (#30928) +- drakhelp: + o fix .mozilla dir as root when it doesn't exists (#29775) - draksec: o make the help dialog clearer about default values (#24159) - harddrake GUI: diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index f99c2bb0f..15c4963c2 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -44,6 +44,7 @@ if (! -e $instpath) { } if (-e $instpath) { + local $ENV{HOME} = '/root'; system("/usr/bin/www-browser file://$ancpath &"); } else { $ugtk2::wm_icon = "help"; |