This commit is contained in:
liumengyi
2022-01-26 14:19:17 +08:00
parent aba10f0435
commit dd0ae6c80f
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -941,7 +941,7 @@ class kanban extends control
* @access public
* @return void
*/
public function moveCard($cardID, $fromColID, $toColID, $fromLaneID, $toLaneID, $kanbanID)
public function moveCard($cardID, $fromColID, $toColID, $fromLaneID, $toLaneID, $kanbanID = 0)
{
$this->kanban->moveCard($cardID, $fromColID, $toColID, $fromLaneID, $toLaneID, $kanbanID);
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));