From 0acb635a7464e7ce1b7a243e4bdc555ce50ff74c Mon Sep 17 00:00:00 2001 From: Conrad Vermeulen Date: Wed, 5 Sep 2007 07:54:20 +0000 Subject: [PATCH] WSA-30 "The move_folder in the KTAPI does a copy and not a move()." Fixed. --- ktapi/KTAPIFolder.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ktapi/KTAPIFolder.inc.php b/ktapi/KTAPIFolder.inc.php index 9803752..304facf 100644 --- a/ktapi/KTAPIFolder.inc.php +++ b/ktapi/KTAPIFolder.inc.php @@ -584,7 +584,7 @@ class KTAPI_Folder extends KTAPI_FolderItem } DBUtil::startTransaction(); - $result = KTFolderUtil::copy($this->folder, $target_folder, $user, $reason); + $result = KTFolderUtil::move($this->folder, $target_folder, $user, $reason); if (PEAR::isError($result)) { -- libgit2 0.21.4