]> git.p6c8.net - devedit.git/commitdiff
Improved file editing using another filename:
authorpcanterino <>
Mon, 4 Oct 2004 17:50:05 +0000 (17:50 +0000)
committerpcanterino <>
Mon, 4 Oct 2004 17:50:05 +0000 (17:50 +0000)
- If the user just entered spaces as filename (detection works for other
  commands using the "newfile" CGI parameter too), we use the original filename
- Saving even works if the file has to be created first

modules/Command.pm

index 967615d97448c338b2ef8a1e7e9fc3ab3280ab06..0c2caf05dab1655b6fa5411ae887ccbdf7a7a261 100644 (file)
@@ -6,7 +6,7 @@ package Command;
 # Execute Dev-Editor's commands
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-09-05
+# Last modified: 2004-10-04
 #
 
 use strict;
@@ -342,7 +342,7 @@ sub exec_endedit($$)
   $content = encode_entities($content,"\200-\377");
  }
 
- if($data->{'cgi'}->param('saveas'))
+ if($data->{'cgi'}->param('saveas') && $data->{'new_physical'} ne '' && $data->{'new_virtual'} ne '')
  {
   # Create the new filename
 
@@ -355,7 +355,7 @@ sub exec_endedit($$)
  }
 
  return error($config->{'errors'}->{'editdir'},upper_path($virtual)) if(-d $physical);
- return error($config->{'errors'}->{'noedit'}, upper_path($virtual)) unless(-r $physical && -w $physical);
+ return error($config->{'errors'}->{'noedit'}, upper_path($virtual)) if(-e $physical && !(-r $physical && -w $physical));
 
  if(file_save($physical,\$content))
  {

patrick-canterino.de