From: Rob H. <for...@us...> - 2002-01-28 20:00:10
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv28222 Modified Files: File.pm Log Message: folders were being created with wonky perms Index: File.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v retrieving revision 1.37 retrieving revision 1.38 diff -U2 -r1.37 -r1.38 --- File.pm 2002/01/26 22:22:10 1.37 +++ File.pm 2002/01/28 20:00:06 1.38 @@ -205,5 +205,5 @@ $log->debug("creating folder : $location/$filename"); - if (mkdir( "$location/$filename", "0336" )) { + if (mkdir( "$location/$filename" )) { $return = 1; } else { |