Commit 4eeb25c47b8b55626e7339be8947bd1eb4c8f8bb
1 parent
68ed2d84
WSA-118
"Java proxy objects experiencing exceptions" Fixed. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8297 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
6 additions
and
0 deletions
ktapi/KTAPIDocument.inc.php
| ... | ... | @@ -1645,6 +1645,12 @@ class KTAPI_Document extends KTAPI_FolderItem |
| 1645 | 1645 | // get the storage path |
| 1646 | 1646 | $detail['storage_path'] = $document->getStoragePath(); |
| 1647 | 1647 | |
| 1648 | + if ($wsversion >= 2) | |
| 1649 | + { | |
| 1650 | + unset($detail['updated_by']); | |
| 1651 | + unset($detail['updated_date']); | |
| 1652 | + } | |
| 1653 | + | |
| 1648 | 1654 | return $detail; |
| 1649 | 1655 | } |
| 1650 | 1656 | ... | ... |