Commit dd0abba9a83ee8983fd79edebf65e80fbe98cf5a

Authored by Neil Blakey-Milner
1 parent 1f2f2a2e

Don't update last modified time when a file is checked out.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3520 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentBL.php
... ... @@ -78,8 +78,6 @@ if (checkSession()) {
78 78 $oDocument->setIsCheckedOut(true);
79 79 // set the user checking the document out
80 80 $oDocument->setCheckedOutUserID($_SESSION["userID"]);
81   - // update modification time
82   - $oDocument->setLastModifiedDate(getCurrentDateTime());
83 81 // update it
84 82 if ($oDocument->update()) {
85 83  
... ...