getGlobal() && ($force || ($license->getNotifyDate() < (time() - 21600)))) { $license->setNotifyDate(); $license->update(); $hostname = Utils::getHostname(); Factory::getConfigNotification()->sendMail('License check FAILED on ' . $hostname, 'There was a failed license check on the server ' . $hostname . '.
Error: ' . $error); } } /** * @return array */ private function _parseLocalKey() { $output = ['signed' => '', 'signed_status' => '', 'status' => '', 'description' => '']; if (!$this->_localKey) { return $output; } list($signed, $signed_status, $status, $description) = explode('|', $this->_localKey, 4); if ($signed) { $output['signed'] = $signed; } if ($signed_status) { $output['signed_status'] = $signed_status; ........................................................................... .......................................... .................