Skip to content
Snippets Groups Projects
Commit 5eabddab authored by Prasad's avatar Prasad
Browse files

Fix #914: Pull time from email date

parent f2cf77e1
No related branches found
No related tags found
1 merge request!1update
......@@ -431,7 +431,7 @@ class Vtiger_MailScannerAction {
$focus->column_fields['description'] = $mailrecord->getBodyHTML();
$focus->column_fields['assigned_user_id'] = $assignedToId;
$focus->column_fields["date_start"] = date('Y-m-d', $mailrecord->_date);
$focus->column_fields["time_start"] = gmdate("H:i:s");
$focus->column_fields["time_start"] = date('H:i:s', $mailrecord->_date);
$focus->column_fields["email_flag"] = 'MAILSCANNER';
$from=$mailrecord->_from[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment