From 5ba94ef156ad3b9155cbf498921ff2478a03df63 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 20 Feb 2025 13:30:02 +0800 Subject: [PATCH] * [bug#59890,done,0.2h] fix an error when removing a member. --- module/project/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/control.php b/module/project/control.php index 136c4ad0d9..28a25996c3 100755 --- a/module/project/control.php +++ b/module/project/control.php @@ -1172,7 +1172,7 @@ class project extends control /* if ajax request, send result. */ if(dao::isError()) return $this->sendError(dao::getError()); - $this->execution->getLimitedExecution(); + $this->loadModel('execution')->getLimitedExecution(); return $this->send(array('result' => 'success', 'load' => $this->createLink($this->config->vision == 'or' ? 'marketresearch' : 'project', 'team', "projectID={$projectID}"))); }