diff --git a/application/Espo/Jobs/NewVersionChecker.php b/application/Espo/Jobs/NewVersionChecker.php index 7572faa272..a43f506aae 100644 --- a/application/Espo/Jobs/NewVersionChecker.php +++ b/application/Espo/Jobs/NewVersionChecker.php @@ -35,7 +35,7 @@ class NewVersionChecker extends \Espo\Core\Jobs\Base { public function run() { - if (!$this->getConfig()->get('adminNotifications') || $this->getConfig()->get('adminNotificationNewVersionCheckerDisabled')) { + if (!$this->getConfig()->get('adminNotifications') || !$this->getConfig()->get('adminNotificationsNewVersion')) { return true; } diff --git a/application/Espo/Resources/i18n/en_US/Admin.json b/application/Espo/Resources/i18n/en_US/Admin.json index 3fd6494766..21c9d7f49e 100644 --- a/application/Espo/Resources/i18n/en_US/Admin.json +++ b/application/Espo/Resources/i18n/en_US/Admin.json @@ -171,7 +171,7 @@ "selectExtensionPackage": "Select extension package", "extensionInstalled": "Extension {name} {version} has been installed.", "installExtension": "Extension {name} {version} is ready for an installation.", - "cronIsNotConfigured": "Scheduled jobs are not running. Please follow the instructions to setup cron job.", + "cronIsNotConfigured": "Scheduled jobs are not running. Hence inbound emails, notifications and reminders are not working. Please follow the instructions to setup cron job.", "newVersionIsAvailable": "New EspoCRM version {latestVersion} is available.", "newExtensionVersionIsAvailable": "New release {latestVersion} of {extensionName} is available." }, diff --git a/application/Espo/Services/AdminNotifications.php b/application/Espo/Services/AdminNotifications.php index bc954171d7..a593606826 100644 --- a/application/Espo/Services/AdminNotifications.php +++ b/application/Espo/Services/AdminNotifications.php @@ -35,7 +35,7 @@ class AdminNotifications extends \Espo\Core\Services\Base { $config = $this->getConfig(); - if (!$config->get('adminNotifications') || $config->get('adminNotificationNewVersionCheckerDisabled')) { + if (!$config->get('adminNotifications') || !$config->get('adminNotificationsNewVersion')) { return true; }