Closed sbrl closed 8 years ago
I've just had Pepperminty Wiki create a directory with the permissions 0000. That isn't right! We should explicitly set the permissions on new directories to 0775.
0000
0775
Note that the execute permission is essential for listing a directory's contents.
Found the problem! We pass null in the recursive directory creator, which set the permissions to 0000 instead of the default. We should change that.
null
I've just had Pepperminty Wiki create a directory with the permissions
0000
. That isn't right! We should explicitly set the permissions on new directories to0775
.Note that the execute permission is essential for listing a directory's contents.