Handle non-premium qrzcq

This commit is contained in:
phl0
2024-11-25 14:12:46 +01:00
parent 948c4afc54
commit 6b573f360c

View File

@@ -27,6 +27,10 @@ class Qrzcq {
// Create XML object
$xml = simplexml_load_string($xml);
if (isset($xml->Session->Error)) {
log_message('debug', 'Error: '.$xml->Session->Error);
}
// Return Session Key
return (string) $xml->Session->Key;
}