[Vtigercrm-commits] [vtiger-commits] r10743 - /vtigercrm/branches/5.0.3/include/utils/export.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Fri Apr 20 04:41:43 EDT 2007
Author: richie
Date: Fri Apr 20 02:41:38 2007
New Revision: 10743
Log:
* Fixed the issue in export, Fixed #3647
Modified:
vtigercrm/branches/5.0.3/include/utils/export.php
Modified: vtigercrm/branches/5.0.3/include/utils/export.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/export.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/export.php Fri Apr 20 02:41:38 2007
@@ -134,7 +134,7 @@
{
$value=br2nl_vt($value);
}
- $value = preg_replace("/(<\/?)(\w+)([^>]*>)/i","",$value);
+ $value = preg_replace("/(<\/?)(\w+)([^>]*>)/i","",html_entity_decode($value, ENT_QUOTES, "ISO-8859-1"));
array_push($new_arr, preg_replace("/\"/","\"\"",$value));
}
$line = implode("\",\"",$new_arr);
More information about the vtigercrm-commits
mailing list