From: Thomas Sontheimer Date: Mon, 28 Jan 2019 09:25:09 +0000 (+0100) Subject: [BUGFIX] Fix unwritable folders messages X-Git-Tag: 4.0.0~25 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/4e0365d789b224bb0cf31e7a92162e05d08c79f3?hp=0325cfa4d56b6e1090896cca133f769dac06f8d6 [BUGFIX] Fix unwritable folders messages --- 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)) {