mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[HamQTH] Fixes issue where certain passwords don't work.
This commit is contained in:
@@ -10,7 +10,7 @@ class Hamqth {
|
|||||||
// Return session key
|
// Return session key
|
||||||
public function session($username, $password) {
|
public function session($username, $password) {
|
||||||
// URL to the XML Source
|
// URL to the XML Source
|
||||||
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.$password;
|
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.urlencode($password);
|
||||||
|
|
||||||
// CURL Functions
|
// CURL Functions
|
||||||
$ch = curl_init();
|
$ch = curl_init();
|
||||||
@@ -33,7 +33,7 @@ class Hamqth {
|
|||||||
$ci = & get_instance();
|
$ci = & get_instance();
|
||||||
|
|
||||||
// URL to the XML Source
|
// URL to the XML Source
|
||||||
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.$password;
|
$xml_feed_url = 'https://www.hamqth.com/xml.php?u='.$username.'&p='.urlencode($password);
|
||||||
|
|
||||||
// CURL Functions
|
// CURL Functions
|
||||||
$ch = curl_init();
|
$ch = curl_init();
|
||||||
|
|||||||
Reference in New Issue
Block a user