boradashvin / xmpphp

Automatically exported from code.google.com/p/xmpphp
0 stars 0 forks source link

split is depreciated in 5.3.0, use explode instead #85

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Line 266 in XMLStream.php:
list($l, $r) = split("}", $ns_tag);
TO
list($l, $r) = explode("}", $ns_tag);

Original issue reported on code.google.com by softwareelves on 21 Jan 2010 at 9:02

GoogleCodeExporter commented 8 years ago
This issue is fixed in http://github.com/cweiske/xmpphp

Original comment by cwei...@cweiske.de on 25 Feb 2010 at 6:25