diff --git a/README.md b/README.md index 360be683..3ee442d6 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,8 @@ Donations Donations to this project are going directly to [TheSerapher](https://github.com/TheSerapher), the original author of this project: -* LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` * BTC address: `1HuYK6WPU8o3yWCrAaADDZPRpL5QiXitfv` -* DOGE address: `DANk8bnc3vHEf7Jthaxq1Xgn1BSiArNdjG` -* 42Coin address: `4VxA6Ht59Mj6ikhA4gDXLiHuAaDCJEvYTZ` -* FST address: `fiRqMgZyhjTN1GSEB3ZxV35JXsE5bjEaQ2` -* FRK address: `FDcgGZjX2B29qevSuiuQVwXhkNhtQT4cEW` +* LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` Website Footer ============== diff --git a/include/classes/monitoring.class.php b/include/classes/monitoring.class.php index e6a1df64..7dd04df6 100644 --- a/include/classes/monitoring.class.php +++ b/include/classes/monitoring.class.php @@ -12,7 +12,7 @@ class Monitoring extends Base { public function storeUptimeRobotStatus() { if ($api_keys = $this->setting->getValue('monitoring_uptimerobot_api_keys')) { $aJSONData = array(); - $url = 'http://api.uptimerobot.com'; + $url = 'https://api.uptimerobot.com'; $aMonitors = explode(',', $api_keys); foreach ($aMonitors as $aData) { $temp = explode('|', $aData); diff --git a/include/pages/statistics/uptime.inc.php b/include/pages/statistics/uptime.inc.php index 7eea6e14..4342a6b1 100644 --- a/include/pages/statistics/uptime.inc.php +++ b/include/pages/statistics/uptime.inc.php @@ -15,7 +15,7 @@ if (!$smarty->isCached('master.tpl', $smarty_cache_key)) { )); $content = 'default.tpl'; } else { - $_SESSION['POPUP'][] = array('CONTENT' => 'UptimeRobot API Key not configured.', 'TYPE' => 'alert alert-warning'); + $_SESSION['POPUP'][] = array('CONTENT' => 'UptimeRobot API Key not configured or no data available.', 'TYPE' => 'alert alert-warning'); $content = ''; } } else { diff --git a/include/smarty_globals.inc.php b/include/smarty_globals.inc.php index fcfdbb69..6b6930b7 100644 --- a/include/smarty_globals.inc.php +++ b/include/smarty_globals.inc.php @@ -225,7 +225,7 @@ if ($setting->getValue('website_theme') == "mpos") $_SESSION['POPUP'][] = array('CONTENT' => 'You are using an old Theme that will not be maintained in the future.', 'TYPE' => 'alert alert-warning'); // Check we can load the theme at all -if ( !in_array($setting->getValue('website_theme'), $template->getThemes())) +if ( !in_array($setting->getValue('website_theme', 'bootstrap'), $template->getThemes())) die('Unable to find your selected theme `' . $setting->getValue('website_theme') . '` in the list of available themes. Please reset your `website_theme` setting in your database.'); // So we can display additional info diff --git a/include/version.inc.php b/include/version.inc.php index ad0f43a1..46e0253e 100644 --- a/include/version.inc.php +++ b/include/version.inc.php @@ -1,7 +1,7 @@