Skip to content
Snippets Groups Projects
Commit a6e7bf22 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

Issue #1830844 by David Strauss: Fixed MTimeProtectedFastFileStorage...

Issue #1830844 by David Strauss: Fixed MTimeProtectedFastFileStorage permissions setting needs to be more liberal.
parent 4f452deb
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -101,7 +101,7 @@ public function save($name, $data) {
$i = 0;
while (($mtime = $this->getUncachedMTime($directory)) && ($mtime != $previous_mtime)) {
$previous_mtime = $mtime;
chmod($directory, 0300);
chmod($directory, 0700);
// Reset the file back in the temporary location if this is not the first
// iteration.
if ($i > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment