From: pcanterino <> Date: Fri, 15 Apr 2005 15:20:41 +0000 (+0000) Subject: This line of code causes nothing but problems! I thought this was fixed long X-Git-Tag: version_3_0~42 X-Git-Url: https://git.p6c8.net/devedit.git/commitdiff_plain/de22130f2d0192f163366364987731ce4d51ca0e This line of code causes nothing but problems! I thought this was fixed long time ago! --- diff --git a/modules/Command.pm b/modules/Command.pm index 5282396..5132a17 100644 --- a/modules/Command.pm +++ b/modules/Command.pm @@ -29,8 +29,6 @@ use HTML::Entities; use Output; use Template; -use Data::Dumper; - my $script = encode_entities($ENV{'SCRIPT_NAME'}); my $users = eval('getpwuid(0)') && eval('getgrgid(0)'); @@ -104,7 +102,7 @@ sub exec_show($$) return error($config->{'errors'}->{'no_dir_access'},$upper_path) unless(-r $physical && -x $physical); my $direntries = dir_read($physical); - return error($config->{'dir_read_fail'},$upper_path,{DIR => encode_entities($virtual)}) unless($direntries); + return error($config->{'errors'}->{'dir_read_fail'},$upper_path,{DIR => encode_entities($virtual)}) unless($direntries); my $files = $direntries->{'files'}; my $dirs = $direntries->{'dirs'}; @@ -394,8 +392,6 @@ sub exec_endedit($$) } else { - # The file was saved successfully! - if($md5data ne $md5file) { seek(FILE,0,0); @@ -405,8 +401,6 @@ sub exec_endedit($$) } $output = devedit_reload({command => 'show', file => $dir}); - - #return error($config->{'errors'}->{'edit_failed'},$dir,{FILE => $virtual}); } close(FILE);