1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2025-08-06 07:12:30 -04:00
This commit is contained in:
LX3JL 2019-10-22 19:47:05 +02:00
commit fa62e84a00

View File

@ -24,7 +24,7 @@ class xReflector {
private $CallingHomeOverrideIP = null; private $CallingHomeOverrideIP = null;
private $Transferinterlink = null; private $Transferinterlink = null;
private $Interlinkfile = null; private $Interlinkfile = null;
public $Interlinks = null; public $Interlinks = null;
private $InterlinkXML = null; private $InterlinkXML = null;
private $ReflectorXML = null; private $ReflectorXML = null;
@ -239,7 +239,12 @@ class xReflector {
$i = 0; $i = 0;
while ($i < $this->NodeCount()) { while ($i < $this->NodeCount()) {
if ($this->Nodes[$i]->GetRandomID() == $RandomId) { if ($this->Nodes[$i]->GetRandomID() == $RandomId) {
return $this->Nodes[$i]->GetCallSign().'-'.$this->Nodes[$i]->GetSuffix(); if (trim($this->Nodes[$i]->GetSuffix()) == "") {
return $this->Nodes[$i]->GetCallSign();
}
else {
return $this->Nodes[$i]->GetCallSign().'-'.$this->Nodes[$i]->GetSuffix();
}
} }
$i++; $i++;
} }