X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/8b44ea28c7eb989926e06b0fd8b861e13af05a26..7bc8b322eb4d5fdf4b6edf0fcd711b2ad5483a3a:/modules/File/Access.pm?ds=inline diff --git a/modules/File/Access.pm b/modules/File/Access.pm index 6f84b3f..2727775 100644 --- a/modules/File/Access.pm +++ b/modules/File/Access.pm @@ -7,7 +7,7 @@ package File::Access; # with only one command # # Author: Patrick Canterino -# Last modified: 2003-10-13 +# Last modified: 2003-11-04 # use strict; @@ -125,15 +125,12 @@ sub file_read($) sub file_save($$) { my ($file,$content) = @_; - my $temp = $file.".temp"; local *FILE; - open(FILE,">",$temp) or return; + open(FILE,">",$file) or return; print FILE $$content or do { close(FILE); return }; close(FILE) or return; - rename($temp,$file) or return; - return 1; }