diff --git a/search/booleanSearch.php b/search/booleanSearch.php index 8eccdc7..8eebfc4 100755 --- a/search/booleanSearch.php +++ b/search/booleanSearch.php @@ -90,8 +90,8 @@ class BooleanSearchDispatcher extends KTStandardDispatcher { $collection->addColumn($t); $collection->addColumn(new DateColumn(_("Created"),"created", "getCreatedDateTime")); $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); - $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); $collection->addColumn(new UserColumn(_('Creator'),'creator_id','getCreatorID')); + $collection->addColumn(new WorkflowColumn(_('Workflow State'),'workflow_state')); $searchable_text = KTUtil::arrayGet($_REQUEST, "fSearchableText"); diff --git a/search/simpleSearch.php b/search/simpleSearch.php index 1237201..971fd91 100644 --- a/search/simpleSearch.php +++ b/search/simpleSearch.php @@ -66,8 +66,8 @@ class SimpleSearchDispatcher extends KTStandardDispatcher { $collection->addColumn($t); $collection->addColumn(new DateColumn(_("Created"),"created", "getCreatedDateTime")); $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); - $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); $collection->addColumn(new UserColumn(_('Creator'),'creator_id','getCreatorID')); + $collection->addColumn(new WorkflowColumn(_('Workflow State'),'workflow_state')); $batchPage = (int) KTUtil::arrayGet($_REQUEST, "page", 0); $batchSize = 20;