fusionpbx/app/xml_cdr
Alexey Melnichuk 90d91c8b5a Fix. Escape `<>` in all fields in CDR xml.
When using redirect cdr also can contain e.g. `sip_redirect_contact_0` / `sip_redirected_to`.
I use `preg_replace_callback` to proceed all fields.
May be it more correct use urlencode because if we get xml with non UTF8 char we lost CDR.
```php
$xml_string = preg_replace_callback("/<([^><]+)>(.*?)<\/\g1>/",
	function ($matches) {
		// var_dump($matches);
		return '<' . $matches[1] . '>' .
			urlencode($matches[2]).
		'</' . $matches[1] . '>';
	},
	$xml_string
);
```
2015-07-02 19:08:48 +04:00
..
app_config.php Remove call center log table and remove redundant semi-colons. 2015-06-21 05:43:06 +00:00
app_defaults.php Remove extra line spaces. 2015-03-22 00:01:39 +00:00
app_languages.php Add latest translations 2015-06-30 11:30:02 +00:00
app_menu.php Add latest translations 2015-06-15 19:30:00 +00:00
report.php wrong directory 2013-10-29 22:47:50 +00:00
root.php Add a missing file sip_profile_copy.php to the dev branch. 2012-06-04 14:58:40 +00:00
v_xml_cdr_import.php Fix. Escape `<>` in all fields in CDR xml. 2015-07-02 19:08:48 +04:00
xml_cdr.php fix a pricing display bug when billing installed 2015-05-01 18:52:01 +00:00
xml_cdr_delete.php CDR: Prevent users with no assigned extensions from viewing records. Search form mods. Fix issue with CDR Delete removing the wrong call recording. 2015-03-14 00:03:16 +00:00
xml_cdr_details.php CDR Details: Define column % widths. 2015-04-15 18:44:22 +00:00
xml_cdr_export.php Use the new multi-lingual code on fusionpbx/app sub directories. 2015-01-18 10:04:43 +00:00
xml_cdr_extension_summary.php Slight change to correct sql queries for times, thanks Nate. 2015-04-29 20:45:32 +00:00
xml_cdr_import_update.php Change the path for includes/require.php to the resources directory. 2013-07-06 06:03:27 +00:00
xml_cdr_inc.php lcr_currency wrong set 2015-05-01 17:39:13 +00:00
xml_cdr_search.php little space, nothing special 2015-06-05 16:10:55 +00:00
xml_cdr_statistics.php CDR & Devices: Hide Show All buttons after showing all. 2015-03-31 03:16:20 +00:00
xml_cdr_statistics_csv.php Change the path for includes/require.php to the resources directory. 2013-07-06 06:03:27 +00:00
xml_cdr_statistics_inc.php CDR Stats: Added missing 'and' in SQL queries. 2015-04-05 02:26:31 +00:00