mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:55:55 +00:00
cache starred: only try to chmod cache directory if it is not writable
This commit is contained in:
@@ -21,7 +21,9 @@ class Cache_Starred_Images extends Plugin {
|
||||
}
|
||||
|
||||
if (is_dir($this->cache_dir)) {
|
||||
chmod($this->cache_dir, 0777);
|
||||
|
||||
if (!is_writable($this->cache_dir))
|
||||
chmod($this->cache_dir, 0777);
|
||||
|
||||
if (is_writable($this->cache_dir)) {
|
||||
$host->add_hook($host::HOOK_UPDATE_TASK, $this);
|
||||
|
||||
Reference in New Issue
Block a user