[Vtigercrm-commits] [vtiger-commits] r9518 - /vtigercrm/trunk/soap/vtigerolservice.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Wed Sep 13 17:22:24 EDT 2006
Author: richie
Date: Wed Sep 13 15:22:17 2006
New Revision: 9518
Log:
Removed the call for htmlentities. It is handled in crmentity save itself. -- By Jeri
Modified:
vtigercrm/trunk/soap/vtigerolservice.php
Modified: vtigercrm/trunk/soap/vtigerolservice.php
==============================================================================
--- vtigercrm/trunk/soap/vtigerolservice.php (original)
+++ vtigercrm/trunk/soap/vtigerolservice.php Wed Sep 13 15:22:17 2006
@@ -327,7 +327,7 @@
$email->column_fields[subject] = $email_subject;
$email->column_fields[assigned_user_id] = $user_id;
$email->column_fields[date_start] = $date_sent;
- $email->column_fields[description] = htmlentities($email_body);
+ $email->column_fields[description] = $email_body;
$email->column_fields[activitytype] = 'Emails';
$email->plugin_save = true;
$email->save("Emails");
More information about the vtigercrm-commits
mailing list