Update of /cvsroot/sandweb/sandweb/lib/SandWeb
In directory usw-pr-cvs1:/tmp/cvs-serv3695/lib/SandWeb
Modified Files:
File.pm
Log Message:
oops, this is a UMASK, not a mode ... :)
Index: File.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -U2 -r1.14 -r1.15
--- File.pm 2001/11/26 18:14:24 1.14
+++ File.pm 2001/11/27 01:29:21 1.15
@@ -104,5 +104,5 @@
my $filename = $self->{'filename'};
- my $return = mkdir( "$location/$filename", "0662" );
+ my $return = mkdir( "$location/$filename", "0336" );
return $return;
|