Fixed attempt to read nonexistent match in JID regex
darcs-hash:20080822191751-f6e2c-578869b8524e3238c461872981a5dd8c285937e3.gz
This commit is contained in:
parent
92645bbc57
commit
1e68183377
|
@ -54,7 +54,6 @@ function jabber_normalize_jid($jid) {
|
|||
if (preg_match("/(?:([^\@]+)\@)?([^\/]+)(?:\/(.*))?$/", $jid, $matches)) {
|
||||
$node = $matches[1];
|
||||
$server = $matches[2];
|
||||
$resource = $matches[3];
|
||||
return strtolower($node.'@'.$server);
|
||||
} else {
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue
Block a user