Fix. Remove debug output.

This commit is contained in:
Alexey Melnichuk
2015-07-13 10:42:14 +04:00
parent aef6836d75
commit d1dfe3258c

View File

@@ -82,7 +82,6 @@
//fix the xml by escaping the contents of <sip_full_XXX>
$xml_string = preg_replace_callback("/<([^><]+)>(.*?[><].*?)<\/\g1>/",
function ($matches) {
var_dump($matches);
return '<' . $matches[1] . '>' .
str_replace(">", "&gt;",
str_replace("<", "&lt;", $matches[2])