X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/1fbf10bec35aeb289a9cf3e1c65a826883bffdea..6cb088cea794fc67941b4e174fe9ed80c8a45875:/devedit.pl diff --git a/devedit.pl b/devedit.pl index f6d59c9..7ad34c0 100644 --- a/devedit.pl +++ b/devedit.pl @@ -1,12 +1,12 @@ #!C:/Programme/Perl/bin/perl.exe -w # -# Dev-Editor 3.0 (CVS) +# Dev-Editor 3.0.1 # # Dev-Editor's main program # # Author: Patrick Canterino -# Last modified: 2005-06-09 +# Last modified: 2006-08-24 # use strict; @@ -22,7 +22,7 @@ use Command; use Output; use Tool; -$VERSION = '3.0 (CVS)'; +$VERSION = '3.0.1'; # Path to configuration file # Change if necessary! @@ -58,7 +58,6 @@ my $new_virtual = ''; if($newfile ne '' && $newfile !~ /^\s+$/) { - $curdir = upper_path($file) if($curdir eq ''); my $path = $curdir.'/'.$newfile; # Extract file and directory name... @@ -95,7 +94,7 @@ if($newfile ne '' && $newfile !~ /^\s+$/) $new_physical = File::Spec->canonpath($new_physical.'/'.$file); $new_virtual .= $file; - # Check if the file is denied by configuration + # Check if accessing this file is forbidden if(is_forbidden_file($config->{'forbidden'},$new_virtual)) {