Merge pull request #1036 from moteus/remove_debug_output
Fix. Remove debug output.
This commit is contained in:
@@ -82,7 +82,6 @@
|
|||||||
//fix the xml by escaping the contents of <sip_full_XXX>
|
//fix the xml by escaping the contents of <sip_full_XXX>
|
||||||
$xml_string = preg_replace_callback("/<([^><]+)>(.*?[><].*?)<\/\g1>/",
|
$xml_string = preg_replace_callback("/<([^><]+)>(.*?[><].*?)<\/\g1>/",
|
||||||
function ($matches) {
|
function ($matches) {
|
||||||
var_dump($matches);
|
|
||||||
return '<' . $matches[1] . '>' .
|
return '<' . $matches[1] . '>' .
|
||||||
str_replace(">", ">",
|
str_replace(">", ">",
|
||||||
str_replace("<", "<", $matches[2])
|
str_replace("<", "<", $matches[2])
|
||||||
|
|||||||
Reference in New Issue
Block a user