Merge pull request #1036 from moteus/remove_debug_output

Fix. Remove debug output.
This commit is contained in:
FusionPBX 2015-07-18 12:52:17 -07:00
commit 0cf21b698a
1 changed files with 0 additions and 1 deletions

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])