From 3c394e8fc39b20b3e9a5d7750357f089fde34eaa Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Mon, 13 Jul 2015 10:42:14 +0400 Subject: [PATCH] Fix. Remove debug output. --- app/xml_cdr/v_xml_cdr_import.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/xml_cdr/v_xml_cdr_import.php b/app/xml_cdr/v_xml_cdr_import.php index 197d312ad9..4dfce90452 100644 --- a/app/xml_cdr/v_xml_cdr_import.php +++ b/app/xml_cdr/v_xml_cdr_import.php @@ -82,7 +82,6 @@ //fix the xml by escaping the contents of $xml_string = preg_replace_callback("/<([^><]+)>(.*?[><].*?)<\/\g1>/", function ($matches) { - var_dump($matches); return '<' . $matches[1] . '>' . str_replace(">", ">", str_replace("<", "<", $matches[2])