From: Andrew Dolgov Date: Wed, 3 Apr 2013 19:24:27 +0000 (+0400) Subject: updater: fix is_writable checking X-Git-Tag: 1.7.7~3 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=cd4d71b41b7e3e7ea394cdbc20b7d62e4e3bc36b;p=tt-rss.git updater: fix is_writable checking --- diff --git a/plugins/updater/init.php b/plugins/updater/init.php index ef5a9496..adab6bc8 100644 --- a/plugins/updater/init.php +++ b/plugins/updater/init.php @@ -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).");