1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:05:55 +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,6 +21,8 @@ class Cache_Starred_Images extends Plugin {
}
if (is_dir($this->cache_dir)) {
if (!is_writable($this->cache_dir))
chmod($this->cache_dir, 0777);
if (is_writable($this->cache_dir)) {