Replace usage of deprecated split() function with explode().
This commit is contained in:
@@ -263,7 +263,7 @@ class XMPPHP_XMLStream {
|
||||
$ns_tags = array($xpath);
|
||||
}
|
||||
foreach($ns_tags as $ns_tag) {
|
||||
list($l, $r) = split("}", $ns_tag);
|
||||
list($l, $r) = explode('}', $ns_tag);
|
||||
if ($r != null) {
|
||||
$xpart = array(substr($l, 1), $r);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user