From 312dd4b71e23b2dac004f3f3348827702032ca52 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Wed, 12 Jul 2017 16:10:54 +0200 Subject: [PATCH 1/3] [UPDATE] Out of release commit, removed donation addresses --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 9f7a83d7..30d8e199 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,6 @@ 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` -* Cryptsy Trade Key: `6ff7292142463b7b80cbbbdfc52334ba89727b11` Website Footer ============== From 2549e40c07ed2aa722ca7249198cd7e0ec83b0eb Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Mon, 17 Jul 2017 15:49:43 +0200 Subject: [PATCH 2/3] [UPDATE] Re-confirmed BTC address --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 30d8e199..3ee442d6 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Donations Donations to this project are going directly to [TheSerapher](https://github.com/TheSerapher), the original author of this project: +* BTC address: `1HuYK6WPU8o3yWCrAaADDZPRpL5QiXitfv` * LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` Website Footer From 586ca796011ba42890e15bf6f73fe63d18afad6e Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Tue, 18 Jul 2017 09:15:22 +0200 Subject: [PATCH 3/3] [FIX #2565] New Uptime Robot HTTPS URL --- include/classes/monitoring.class.php | 2 +- include/pages/statistics/uptime.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/classes/monitoring.class.php b/include/classes/monitoring.class.php index f6f4e14d..87ce9d6f 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 {