Replace usage of deprecated split() function with explode().

This commit is contained in:
Mat Gadd
2010-02-25 15:51:04 +00:00
parent b9a9fb85d7
commit fe80cd6f48
2 changed files with 3 additions and 3 deletions

View File

@@ -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 {