Commit 038b227353a9417fce471add2e61d49fff59dc77
1 parent
879e1aaf
Change doubled-up Last Modified to Workflow States
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4938 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
2 additions
and
2 deletions
search/booleanSearch.php
| ... | ... | @@ -90,8 +90,8 @@ class BooleanSearchDispatcher extends KTStandardDispatcher { |
| 90 | 90 | $collection->addColumn($t); |
| 91 | 91 | $collection->addColumn(new DateColumn(_("Created"),"created", "getCreatedDateTime")); |
| 92 | 92 | $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); |
| 93 | - $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); | |
| 94 | 93 | $collection->addColumn(new UserColumn(_('Creator'),'creator_id','getCreatorID')); |
| 94 | + $collection->addColumn(new WorkflowColumn(_('Workflow State'),'workflow_state')); | |
| 95 | 95 | |
| 96 | 96 | $searchable_text = KTUtil::arrayGet($_REQUEST, "fSearchableText"); |
| 97 | 97 | ... | ... |
search/simpleSearch.php
| ... | ... | @@ -66,8 +66,8 @@ class SimpleSearchDispatcher extends KTStandardDispatcher { |
| 66 | 66 | $collection->addColumn($t); |
| 67 | 67 | $collection->addColumn(new DateColumn(_("Created"),"created", "getCreatedDateTime")); |
| 68 | 68 | $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); |
| 69 | - $collection->addColumn(new DateColumn(_("Last Modified"),"modified", "getLastModifiedDate")); | |
| 70 | 69 | $collection->addColumn(new UserColumn(_('Creator'),'creator_id','getCreatorID')); |
| 70 | + $collection->addColumn(new WorkflowColumn(_('Workflow State'),'workflow_state')); | |
| 71 | 71 | |
| 72 | 72 | $batchPage = (int) KTUtil::arrayGet($_REQUEST, "page", 0); |
| 73 | 73 | $batchSize = 20; | ... | ... |