Skip to content

Commit

Permalink
Fix modal links
Browse files Browse the repository at this point in the history
- #12
  • Loading branch information
aljawaid committed May 8, 2023
1 parent 0fb14ab commit bed74ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion Assets/css/content-cleaner.css
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,6 @@ ul.plugin-btn-list li a.job-btn {
ul.plugin-btn-list li a.job-btn span.plugin-icon {
width: 16px;
height: 16px;
color: red;
}

li.plugin-btn-item {
Expand Down
8 changes: 4 additions & 4 deletions Controller/PluginCleaningController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function deletePlugin($plugin_name)

public function confirmDeletePluginTables()
{
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_delete', array(
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_deep_clean', array(
'plugin_job_name' => $this->request->getStringParam('plugin_job_name'),
'job_number' => $this->request->getStringParam('job_number'),
)));
Expand All @@ -64,7 +64,7 @@ public function deletePluginTables()

public function confirmDeleteCoreTableColumns()
{
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_delete', array(
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_deep_clean', array(
'plugin_job_name' => $this->request->getStringParam('plugin_job_name'),
'job_number' => $this->request->getStringParam('job_number'),
)));
Expand Down Expand Up @@ -94,7 +94,7 @@ public function deleteCoreTableColumns()

public function confirmDeleteCoreTableEntries()
{
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_delete', array(
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_deep_clean', array(
'plugin_job_name' => $this->request->getStringParam('plugin_job_name'),
'job_number' => $this->request->getStringParam('job_number'),
)));
Expand All @@ -115,7 +115,7 @@ public function deleteCoreTableEntries()

public function confirmDeletePluginSchemaEntry()
{
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_delete', array(
$this->response->html($this->template->render('contentCleaner:config/modals/plugin_deep_clean', array(
'plugin_job_name' => $this->request->getStringParam('plugin_job_name'),
'job_number' => $this->request->getStringParam('job_number'),
)));
Expand Down
Empty file.

0 comments on commit bed74ab

Please sign in to comment.