Commit 8a039e20e0cf6d7a97e4fb5d5f5b67dfee635f85
1 parent
01a11911
WSA-104
"Folder detail returning incorrect modified date. It returns checked out date rather than modified date" Fixed. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7951 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
ktapi/KTAPIFolder.inc.php
| ... | ... | @@ -449,7 +449,7 @@ class KTAPI_Folder extends KTAPI_FolderItem |
| 449 | 449 | if (empty($checked_out_date)) $checked_out_date = 'n/a'; |
| 450 | 450 | |
| 451 | 451 | $modified_by=$this->_resolve_user($document->getCreatorID()); |
| 452 | - $modified_date = $document->getCheckedOutDate(); | |
| 452 | + $modified_date = $document->getLastModifiedDate(); | |
| 453 | 453 | if (empty($modified_date)) $modified_date = 'n/a'; |
| 454 | 454 | |
| 455 | 455 | $owned_by =$this->_resolve_user($document->getOwnerID()); | ... | ... |