mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
use https.. it's 2026
This commit is contained in:
@@ -18,7 +18,7 @@ class Dxcalendar extends CI_Controller {
|
||||
'backup' => $this->config->item('cache_backup') ?? 'file',
|
||||
'key_prefix' => $this->config->item('cache_key_prefix') ?? ''
|
||||
]);
|
||||
$rssUrl = 'http://www.ng3k.com/adxo.xml';
|
||||
$rssUrl = 'https://www.ng3k.com/adxo.xml';
|
||||
if (!$rssRawData = $this->cache->get('RssRawDxCal')) {
|
||||
$rssRawData = file_get_contents($rssUrl, true);
|
||||
$this->cache->save('RssRawDxCal', $rssRawData, (60*60*12));
|
||||
|
||||
@@ -27,7 +27,7 @@ class Qrz extends CI_Controller {
|
||||
|
||||
public function qrz_apitest() {
|
||||
$apikey = xss_clean($this->input->post('APIKEY'));
|
||||
$url = 'http://logbook.qrz.com/api'; // TODO: Move this to database
|
||||
$url = 'https://logbook.qrz.com/api'; // TODO: Move this to database
|
||||
|
||||
$post_data['KEY'] = $apikey;
|
||||
$post_data['ACTION'] = 'STATUS';
|
||||
@@ -362,7 +362,7 @@ class Qrz extends CI_Controller {
|
||||
$result = "Temporary download file ".$file." is not writable. Aborting!";
|
||||
return false;
|
||||
}
|
||||
$url = 'http://logbook.qrz.com/api';
|
||||
$url = 'https://logbook.qrz.com/api';
|
||||
|
||||
$post_data['KEY'] = $qrz_api_key;
|
||||
$post_data['ACTION'] = 'FETCH';
|
||||
|
||||
Reference in New Issue
Block a user