1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:06:02 +00:00

cache starred: only try to chmod cache directory if it is not writable

This commit is contained in:
Andrew Dolgov
2013-09-06 09:21:17 +04:00
parent 0c0e5f3640
commit f5967cf825

View File

@@ -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);