From 0e02f8710bfef36c2e235caa4872d562f8b2b255 Mon Sep 17 00:00:00 2001 From: pcanterino <> Date: Wed, 29 Dec 2004 20:39:59 +0000 Subject: [PATCH] If locking of the uselist file failed, get the template variables directly from the File::UseList object, because the name of the lock file could have been composed by File::UseList. --- devedit.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/devedit.pl b/devedit.pl index 44ced92..94c9f0e 100644 --- a/devedit.pl +++ b/devedit.pl @@ -6,7 +6,7 @@ # Dev-Editor's main program # # Author: Patrick Canterino -# Last modified: 2004-11-26 +# Last modified: 2004-12-29 # use strict; @@ -53,7 +53,6 @@ my $curdir = $cgi->param('curdir') || ''; my $newfile = $cgi->param('newfile') || ''; # Create physical and virtual path for the new file -# This section has to be optimized - ugh! my $new_physical = ''; my $new_virtual = ''; @@ -108,7 +107,7 @@ if(-e clean_path($config->{'fileroot'}."/".$file)) lockfile => $config->{'lock_file'}, timeout => $config->{'lock_timeout'}); - $uselist->lock or abort($config->{'errors'}->{'lock_failed'},undef,{USELIST => $config->{'uselist_file'}, LOCK_FILE => $config->{'lock_file'}}); + $uselist->lock or abort($config->{'errors'}->{'lock_failed'},undef,{USELIST => $uselist->{'listfile'}, LOCK_FILE => $uselist->{'lockfile'}}); $uselist->load; # Create a hash with data submitted by user -- 2.34.1