Skip to content
Snippets Groups Projects
Commit 4c241b68 authored by pbarroca's avatar pbarroca
Browse files

Fix deprecated split()

parent a7464969
Branches
Tags
No related merge requests found
......@@ -139,7 +139,7 @@ class Class_WebService_XMLParser {
* @return string
*/
public function tagWithoutNamespace($tag) {
$parts = split(':', $tag);
$parts = explode(':', $tag);
return end($parts);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment