From 297841a92f4e0e52e5a9362d73665eb5a00df4b6 Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Tue, 21 Jun 2022 21:44:21 +0200 Subject: [PATCH] Fixed issue #18185: Error message "No scope _renderErrorString" when trying to update --- application/controllers/admin/Update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/admin/Update.php b/application/controllers/admin/Update.php index d8234596fd5..8905cd50625 100755 --- a/application/controllers/admin/Update.php +++ b/application/controllers/admin/Update.php @@ -397,7 +397,7 @@ public function step4() $remove = $updateModel->removeDeletedFiles($updateinfos); if (!$remove->result) { - return $this->_renderErrorString($remove->error); + return $this->renderErrorString($remove->error); }; $file = $updateModel->downloadUpdateFile($access_token, $destinationBuild); if ($file->result) {