updater: fix is_writable checking

This commit is contained in:
Andrew Dolgov 2013-04-03 23:24:27 +04:00
parent 83b1ddafef
commit cd4d71b41b

View file

@ -42,7 +42,7 @@ class Updater extends Plugin {
case 0:
array_push($log, "Work directory: $work_dir");
if (!is_writable($work_dir) && !is_writable("$parent_dir")) {
if (!is_writable($work_dir) || !is_writable("$parent_dir")) {
$user = posix_getpwuid(posix_geteuid());
$user = $user["name"];
array_push($log, "Both tt-rss and parent directories should be writable as current user ($user).");