From 5230ba2c3b7fdcb1d4743520abd72dc700bd9397 Mon Sep 17 00:00:00 2001 From: aljawaid <10233708+aljawaid@users.noreply.github.com> Date: Sun, 23 Jul 2023 08:16:19 +0100 Subject: [PATCH] Fix Variable #18 --- Controller/PluginCleaningController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/PluginCleaningController.php b/Controller/PluginCleaningController.php index a6ce0b7..70ee370 100644 --- a/Controller/PluginCleaningController.php +++ b/Controller/PluginCleaningController.php @@ -32,7 +32,7 @@ public function confirmDeletePlugin() $this->response->html($this->template->render('contentCleaner:config/modals/plugin_delete', array( 'title' => t('Confirm Cleaning Job'), 'plugin_job_name' => $this->request->getStringParam('plugin_job_name'), - 'job' => $this->request->getStringParam('job_number'), + 'job' => $this->request->getStringParam('job'), 'folder_name' => $this->helper->pluginCleaningHelper->getFolderName(), ))); }