From 8fbf63ce85f6ff270ddccde9b5489c82c1d13eee Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Tue, 24 Sep 2019 08:47:51 -0400 Subject: [PATCH] Update error message in Modules class to make it less ambiguous per processwire/processwire-issues#926 --- wire/core/Modules.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wire/core/Modules.php b/wire/core/Modules.php index ad76b330..d466d139 100644 --- a/wire/core/Modules.php +++ b/wire/core/Modules.php @@ -3504,7 +3504,11 @@ class Modules extends WireArray { if($moduleInstance && $moduleInstance instanceof ConfigurableModule) { // re-try because moduleInfo may be temporarily incorrect for this request because of change in moduleInfo format // this is due to reports of ProcessChangelogHooks not getting config data temporarily between 2.6.11 => 2.6.12 - $this->error("Configurable module check failed for $className, retrying...", Notice::debug); + $this->error( + "Configurable module check failed for $className. " . + "If this error persists, please do a Modules > Refresh.", + Notice::debug + ); $useCache = false; } else { return false;