You have to edit these files
modules/Calls/metadata/subpanels/ForHistory.php
modules/Meetings/metadata/subpanels/ForHistory.php
modules/Tasks/metadata/subpanels/ForHistory.php
modules/Notes/metadata/subpanels/ForHistory.php
and look for the date_modified section. Then either replace it with the code for the date_entered or add date_entered as shown below.
PHP Code:
'date_modified'=>array(
'vname' => 'LBL_LIST_DATE_MODIFIED',
'width' => '10%',
),
'date_entered'=>array(
'vname' => 'LBL_DATE_ENTERED',
'width' => '10%',
),
then edit
modules/Emails/metadata/subpanels/ForHistory.php
modules/Emails/metadata/subpanels/ForUnlinkedEmailHistory.php
and look for the date_modified section. Then either replace it with the code for the date_entered or add date_entered as shown below.
PHP Code:
'date_modified' => array(
'width' => '10%',
),
'date_entered' => array(
'width' => '10%',
),
Now you could also rework the percentages if you wanted to,but I'll leave that to you.
Bookmarks