]> git.p6c8.net - devedit.git/blobdiff - devedit.pl
- Dev-Editor now checks if it is able to access a directory: Directories that
[devedit.git] / devedit.pl
index 169abc42a0446d77d16d2319354fef1eb1e94888..c29c22e702e08f3e7df5d407e302561133ee42dc 100644 (file)
@@ -6,7 +6,7 @@
 # Dev-Editor's main program
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-10-04
+# Last modified: 2004-11-04
 #
 
 use strict;
@@ -35,6 +35,10 @@ use constant CONFIGFILE => 'devedit.dat';
 my $config = read_config(CONFIGFILE);
 error_template($config->{'templates'}->{'error'}); # Yes, I'm lazy...
 
+# Check if we are able to access the root directory
+
+abort($config->{'errors'}->{'no_root_access'}) unless(-r $config->{'fileroot'} && -x $config->{'fileroot'});
+
 # Read the most important form data
 
 my $cgi = new CGI;

patrick-canterino.de