X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fhelp.pl;h=51dfa930a413d56e9e2900b10927dd5068fa602a;hb=a9cff23c7050696bfe1dee906157416c49739f07;hp=d87de98113d6fc84829dd08619cedbd592dc307e;hpb=0e84728de35d2dadbb9d624614a471b68ae9eef6;p=spider.git diff --git a/cmd/help.pl b/cmd/help.pl index d87de981..51dfa930 100644 --- a/cmd/help.pl +++ b/cmd/help.pl @@ -14,7 +14,6 @@ my ($self, $line) = @_; my @out; # this is naff but it will work for now -$line = "help" unless $line; my $lang = $self->lang; $lang = 'en' if !$lang; @@ -35,16 +34,18 @@ $lang = 'en' if !$lang; my $h = new IO::File; if (!open($h, "$main::localcmd/Commands_$lang.hlp")) { + $lang = 'en'; if (!open($h, "$main::cmd/Commands_$lang.hlp")) { return (1, $self->msg('helpe1')); } } my $in; -$line =~ s/![\w\/]//og; -$line =~ s/\//\.\*\//og; -$line =~ s/^\s+//og; -$line =~ s/\s+$//og; +$line =~ s/[^\w\/]//g; +$line =~ s/\//\.\*\//g; +$line =~ s/^\s+//g; +$line =~ s/\s+$//g; +$line = "help" if $line =~ /^\s*$/; # sort out aliases my $alias = CmdAlias::get_hlp($line);