From 04e63606899a515a33c4af383bc778a68c8ca588 Mon Sep 17 00:00:00 2001 From: chentao Date: Thu, 20 Jul 2023 11:03:49 +0800 Subject: [PATCH] * Remove message from unlinkStakeholder API. --- module/program/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/program/control.php b/module/program/control.php index 2ad66bfe93..b944e1752c 100644 --- a/module/program/control.php +++ b/module/program/control.php @@ -551,7 +551,7 @@ class program extends control if($confirm == 'no') { $actionUrl = $this->inlink('unlinkStakeholder', "stakeholderID=$stakeholderID&programID=$programID&confirm=yes"); - return $this->send(array('result' => 'success', 'message' => $this->lang->program->confirmUnlink, 'callback' => "unlinkStakeholderConfirm('{$this->lang->program->confirmUnlink}', '$actionUrl')")); + return $this->send(array('result' => 'success', 'callback' => "unlinkStakeholderConfirm('{$this->lang->program->confirmUnlink}', '$actionUrl')")); } $account = $this->dao->select('user')->from(TABLE_STAKEHOLDER)->where('id')->eq($stakeholderID)->fetch('user');