- Code: Select all
list($region, $realm) = explode('-',$realm);
To properly address dashed realm names (of which, I swear, I must be the only one who uses roster and siggen that has it!!!), it needs to read:
- Code: Select all
list($region, $realm) = explode('-',$realm,2);
Cheers! My users will be happy again!
G.