From: Mikael Nordfeldth Date: Wed, 15 Apr 2015 22:22:09 +0000 (+0200) Subject: Clearer warning message on non-existing file X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a55d1df585998bdcba03afe38dd60777e9aad030;p=quix0rs-gnu-social.git Clearer warning message on non-existing file --- diff --git a/scripts/upgrade.php b/scripts/upgrade.php index 692eaac17a..126ef29036 100644 --- a/scripts/upgrade.php +++ b/scripts/upgrade.php @@ -520,7 +520,7 @@ function setFilehashOnLocalFiles() $file->filehash = hash_file(File::FILEHASH_ALG, $file->getPath()); $file->update($orig); } catch (FileNotFoundException $e) { - echo "\n WARNING: file ID {$file->id} does not exist on path '{$e->path}'. Clean up the file table?"; + echo "\n WARNING: file ID {$file->id} does not exist on path '{$e->path}'. If there is no file system error, run: php scripts/clean_file_table.php"; } } }