Commit eadec030e82237ea1ff7b2b7ee22c47964ce0680

Authored by Jalaloedien Abrahams
1 parent 9f886aa1

KTS-1864

"Version History table does not contain Date of Version. "
Fixed.

Reviewed By: Conrad

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6547 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/document/metadata_history.smarty
... ... @@ -12,7 +12,7 @@
12 12 <th class="date">{i18n}Content Version{/i18n}</th>
13 13 <th class="compare">{i18n}Compare with Current{/i18n}</th>
14 14 <th class="compare">{i18n}Compare with Other Version{/i18n}</th>
15   -
  15 + <th class="versiondate">Date Created</th>
16 16 </tr>
17 17 </thead>
18 18 <tbody>
... ... @@ -37,6 +37,7 @@
37 37 <a href="{addQS}action=startComparison&fDocumentId={$document->getId()}&fComparisonVersion={$oVersion->getCurrentMetadataVersionId()}{/addQS}">{i18n}compare with other version{/i18n}</a>
38 38 {/if}
39 39 </td>
  40 + <td class="versiondate">{$oVersion->getVersionCreated()}</td>
40 41 </tr>
41 42 {/foreach}
42 43 </tbody>
... ...