X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/10768ccbca008a7771d70ff763971abacaa7a877..be298a203e5044131b71d108260859ce69ba4ee5:/devedit.pl diff --git a/devedit.pl b/devedit.pl index f7b2818..783013d 100644 --- a/devedit.pl +++ b/devedit.pl @@ -1,12 +1,12 @@ #!C:/Programme/Perl/bin/perl.exe -w # -# Dev-Editor 3.0.1 +# Dev-Editor 3.1 # # Dev-Editor's main program # # Author: Patrick Canterino -# Last modified: 2006-08-24 +# Last modified: 2010-12-24 # # Copyright (C) 1999-2000 Roland Bluethgen, Frank Schoenmann # Copyright (C) 2003-2009 Patrick Canterino @@ -30,7 +30,7 @@ use Command; use Output; use Tool; -$VERSION = '3.0.1'; +$VERSION = '3.2-dev'; # Path to configuration file # Change if necessary! @@ -55,10 +55,17 @@ abort($config->{'errors'}->{'no_root_access'}) unless(-r $config->{'fileroot'} & my $cgi = new CGI; my $command = $cgi->param('command') || 'show'; -my $file = $cgi->param('file') || '/'; +my $file = $cgi->param('file') || $config->{'startdir'} || '/'; my $curdir = $cgi->param('curdir') || ''; my $newfile = $cgi->param('newfile') || ''; +# Check if the command is disabled + +if(is_disabled_command($config->{'disable_commands'},$command)) +{ + abort($config->{'errors'}->{'command_disabled'},'/',{COMMAND => encode_html($command)}); +} + # Create physical and virtual path for the new file my $new_physical = '';