summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-10-01 15:23:37 +0000
committerThierry Vignaud <tv@mandriva.org>2008-10-01 15:23:37 +0000
commit8d7615220d460428b9d09bad6c1f6c6437a84ab0 (patch)
tree9cb1a0991f9047365faebc51c960629912356a55 /perl-install/interactive.pm
parent13f9a95feb9a322a052e01fad613eb072251393b (diff)
downloaddrakx-backup-do-not-use-8d7615220d460428b9d09bad6c1f6c6437a84ab0.tar
drakx-backup-do-not-use-8d7615220d460428b9d09bad6c1f6c6437a84ab0.tar.gz
drakx-backup-do-not-use-8d7615220d460428b9d09bad6c1f6c6437a84ab0.tar.bz2
drakx-backup-do-not-use-8d7615220d460428b9d09bad6c1f6c6437a84ab0.tar.xz
drakx-backup-do-not-use-8d7615220d460428b9d09bad6c1f6c6437a84ab0.zip
(interactive_help_sub_get_id) just check if HTML help exists
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r--perl-install/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index 62706f25f..04174d433 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -643,7 +643,7 @@ sub helper_separator_tree_to_tree {
sub interactive_help_sub_get_id {
my ($o, $id) = @_;
- eval { $o->interactive_help_has_id($id) }
+ eval { $o->is_help_file_exist($id) }
&& sub { $o->interactive_help_get_id($id) };
}