another chmod with a leading 1 (Perl interprets this as a decimal instead of octal)

parent 7e7c4e20
......@@ -2055,7 +2055,7 @@ if (!($sth->fetchrow_arrayref()->[0])) {
# a Bugzilla with the old data format, and so upgrade their data files.
unless (-d 'graphs') {
print "Creating graphs directory...\n";
mkdir 'graphs', 1770;
mkdir 'graphs', 0770;
if ($my_webservergroup eq "") {
chmod 01777, 'graphs';
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment