Commit 3f50153d7928c92b57fda3b4e39b8b95a9fea018
1 parent
cae56c86
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
Showing
1 changed file
with
0 additions
and
2 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentBL.php
| @@ -78,8 +78,6 @@ if (checkSession()) { | @@ -78,8 +78,6 @@ if (checkSession()) { | ||
| 78 | $oDocument->setIsCheckedOut(true); | 78 | $oDocument->setIsCheckedOut(true); |
| 79 | // set the user checking the document out | 79 | // set the user checking the document out |
| 80 | $oDocument->setCheckedOutUserID($_SESSION["userID"]); | 80 | $oDocument->setCheckedOutUserID($_SESSION["userID"]); |
| 81 | - // update modification time | ||
| 82 | - $oDocument->setLastModifiedDate(getCurrentDateTime()); | ||
| 83 | // update it | 81 | // update it |
| 84 | if ($oDocument->update()) { | 82 | if ($oDocument->update()) { |
| 85 | 83 |