From e71e23bbb53a36a8426be65508c4741ed348c45d Mon Sep 17 00:00:00 2001 From: stoletniy Date: Mon, 15 May 2017 20:16:29 +0300 Subject: [PATCH] Temporarily hide invalid key warnings when the license key isn't specified [MAILPOET-911] --- lib/Config/ServicesChecker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Config/ServicesChecker.php b/lib/Config/ServicesChecker.php index 58e9b2bcbd..d97e2ee474 100644 --- a/lib/Config/ServicesChecker.php +++ b/lib/Config/ServicesChecker.php @@ -55,7 +55,7 @@ class ServicesChecker { $premium_plugin_active = License::getLicense(); $premium_key = Setting::getValue(Bridge::PREMIUM_KEY_STATE_SETTING_NAME); - if(!$premium_plugin_active) { + if(!$premium_plugin_active || !$premium_key_specified) { $display_error_notice = false; }