The problem is the following section in email.php
PHP Code:
/*/////////////////////////////////////////////////////////////////////
//// cn: bug 9193 - displaying "date_modified" in Subpanels makes it look
* like we're overwriting the date/time values on replies.
* This code is called from SubPanelTiles - we are overloading the date_modified field with the values below.
*/
$q = "SELECT date_start, time_start FROM emails WHERE id = '{$this->id}' AND deleted = 0";
$r = $this->db->query($q);
$a = $this->db->fetchByAssoc($r);
$dateStart = $a['date_start']." ".$a['time_start'];
$dateStartHack = $timedate->to_display_date_time($dateStart);
$this->date_modified = $dateStartHack;
Bookmarks