Merge pull request #260 from MW0MWZ/master

Allow more than one module on peer links
pull/223/merge
LX1IQ 2 months ago committed by GitHub
commit bf7031eabd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -33,7 +33,7 @@ class Peer {
// Validate LinkedModule (single letter A-Z)
$LinkedModule = trim(strtoupper($LinkedModule));
$this->LinkedModule = preg_match('/^[A-Z]$/', $LinkedModule) ? $LinkedModule : '';
$this->LinkedModule = preg_match('/^[A-Z]+$/', $LinkedModule) ? $LinkedModule : '';
}

Loading…
Cancel
Save

Powered by TurnKey Linux.