[Vtigercrm-commits] [vtiger-commits] r10892 - /vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Sun May 13 11:16:07 EDT 2007
Author: richie
Date: Sun May 13 09:16:00 2007
New Revision: 10892
Log:
* Commented the lines which have replaced the $ as null which cause the problem as cannot use $ in mail, Fixed #3721
Modified:
vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
Modified: vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/CommonUtils.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/CommonUtils.php Sun May 13 09:16:00 2007
@@ -2498,12 +2498,13 @@
break;
}
//replace the unwanted tokens by null
- $token_data_pair = explode('$',$description);
+ //commented out to fix the bug #3721
+ /*$token_data_pair = explode('$',$description);
for($i=1;$i < count($token_data_pair);$i+=2)
{
$token_data = '$'.$token_data_pair[$i].'$';
$description = str_replace($token_data,'',$description);
- }
+ }*/
$log->debug("Exiting from getMergedDescription ...");
return $description;
}
More information about the vtigercrm-commits
mailing list