is there a way to change the Modal about the mail history? I was asked if it’s possible to change the entry format from date - message to date+time - message.
2016-09-13 13:34 Message Title
instead of
2016-09-13 Message Title
I was talking about the history that I access from the submissions dashboard by clicking on More Information in the drop down of one of the submissions.
The date format can be changed by editing config.inc.php in the date_format_short setting – but that’ll affect other areas as well. To adjust that one in isolation, you’ll need to edit lib/pkp/controllers/grid/eventLog/SubmissionEventLogGridHandler.inc.php:
$this->addColumn(
new GridColumn(
'date',
'common.date',
null,
null,
new DateGridCellProvider(
$cellProvider,
Config::getVar('general', 'date_format_short')
)
)
);
Regards,
Alec Smecher
Public Knowledge Project Team