From 4e0365d789b224bb0cf31e7a92162e05d08c79f3 Mon Sep 17 00:00:00 2001 From: Thomas Sontheimer Date: Mon, 28 Jan 2019 10:25:09 +0100 Subject: [PATCH 1/1] [BUGFIX] Fix unwritable folders messages --- lib/functions.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/functions.php b/lib/functions.php index 01d0638..cf6b913 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -498,16 +498,13 @@ function check_errors($cfg) exit; } - /* check if the destination dirs are writable */ - $writable = is_writable(VAR_FILES) && is_writable(VAR_LINKS); - /* Checking for errors. */ if (!is_writable(VAR_FILES)) { - add_error(t('The file directory is not writable!'), VAR_FILES); + add_error(t('FILE_DIR_W'), VAR_FILES); } if (!is_writable(VAR_LINKS)) { - add_error(t('The link directory is not writable!'), VAR_LINKS); + add_error(t('LINK_DIR_W'), VAR_LINKS); } if (!is_writable(VAR_ASYNC)) { -- 2.34.1