Temporarily hide invalid key warnings when the license key isn't specified [MAILPOET-911]

This commit is contained in:
stoletniy
2017-05-15 20:16:29 +03:00
parent a3e8d47199
commit e71e23bbb5

View File

@ -55,7 +55,7 @@ class ServicesChecker {
$premium_plugin_active = License::getLicense(); $premium_plugin_active = License::getLicense();
$premium_key = Setting::getValue(Bridge::PREMIUM_KEY_STATE_SETTING_NAME); $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; $display_error_notice = false;
} }