Skip to content

Commit 10d2124

Browse files
committed
Fixed issue with the history dates that were in wrong format
Set version to 3.3.0-community-RE-1.7
1 parent cc8daee commit 10d2124

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

workflow/engine/methods/cases/ajaxListener.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ public function caseHistory()
421421
$conf = new Configurations();
422422
$oHeadPublisher->addExtJsScript('cases/caseHistory', true); //adding a javascript file .js
423423
$oHeadPublisher->addContent('cases/caseHistory'); //adding a html file .html.
424+
$oHeadPublisher->assign("FORMATS", $conf->getFormats());
424425
$oHeadPublisher->assign('pageSize', $conf->getEnvSetting('casesListRowNumber'));
425426
G::RenderPage('publish', 'extJs');
426427
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
2-
define("PM_VERSION", "3.3.0-community-RE-1.6");
3-
define("PM_BUILD_VERSION", "3.3.0-community-RE-1.6");
2+
define("PM_VERSION", "3.3.0-community-RE-1.7");
3+
define("PM_BUILD_VERSION", "3.3.0-community-RE-1.7");

workflow/engine/templates/cases/caseHistory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
startDateRender = function(v){
217217
var dateString = "-";
218218
if(v != "-" && v != null){
219-
dateString = _DF(v,"m/d/Y H:i:s");
219+
dateString = _DF(v, FORMATS.casesListDateFormat);
220220
}
221221
return dateString;
222222
}

0 commit comments

Comments
 (0)