In /modules/ccenter/reception.php
The table indicates: posted (_MD_POSTDATE)
But it shows last modification date.
1) If you want to see creation date in this column:
In reception.php
After (line 91)
$form['mdate'] = formatTimestamp($form['mtime']);
$form['cdate'] = formatTimestamp($form['ctime']);
After (line 134)
$data['mdate'] = formatTimestamp($data['mtime']);
$data['cdate'] = formatTimestamp($data['ctime']);
Then in templates\ccenter_reception.htm (line 68)
Change
- <td><{$msg.mdate}></td>
+ <td><{$msg.cdate}></td>
2) If you prefer to see last update date: just change column title:
In templates\ccenter_reception.htm (line 58)
- <th><{$smarty.const._MD_POSTDATE}></th>
+ <th><{$smarty.const._MD_MODDATE}></th>
Z