1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Missing read permission from calls to phpbb_chmod()

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9208 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith
2008-12-19 20:36:18 +00:00
parent cd6e5a85e7
commit a94ed97992
4 changed files with 25 additions and 18 deletions

View File

@@ -708,7 +708,7 @@ class queue
@flock($fp, LOCK_UN);
fclose($fp);
phpbb_chmod($this->cache_file, CHMOD_WRITE);
phpbb_chmod($this->cache_file, CHMOD_READ | CHMOD_WRITE);
}
}
@@ -749,7 +749,7 @@ class queue
@flock($fp, LOCK_UN);
fclose($fp);
phpbb_chmod($this->cache_file, CHMOD_WRITE);
phpbb_chmod($this->cache_file, CHMOD_READ | CHMOD_WRITE);
}
}
}