mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
change the way we do chmodd'ing. I know, my implementation really sucked... good we have motivated community members who point this out. ;) Thanks to faw for providing a way better function and for discussing and also abiding to our needs. :) LEW21 should maybe credited too... he gave the inspiration without knowing it.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8780 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -562,7 +562,7 @@ class queue
|
||||
|
||||
$fp = @fopen($this->cache_file . '.lock', 'wb');
|
||||
fclose($fp);
|
||||
phpbb_chmod($this->cache_file . '.lock', 'write-all');
|
||||
@chmod($this->cache_file . '.lock', 0777);
|
||||
|
||||
include($this->cache_file);
|
||||
|
||||
@@ -697,7 +697,7 @@ class queue
|
||||
@flock($fp, LOCK_UN);
|
||||
fclose($fp);
|
||||
|
||||
phpbb_chmod($this->cache_file, 'rwrite');
|
||||
phpbb_chmod($this->cache_file, CHMOD_WRITE);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -738,7 +738,7 @@ class queue
|
||||
@flock($fp, LOCK_UN);
|
||||
fclose($fp);
|
||||
|
||||
phpbb_chmod($this->cache_file, 'rwrite');
|
||||
phpbb_chmod($this->cache_file, CHMOD_WRITE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user