Skip to content

Commit

Permalink
Fix uninstall of plugin, fix #14
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis531 committed Nov 21, 2024
1 parent 7eedf21 commit c9742d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions migrations/004_add_custom_texts.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ public function down()
LEFT JOIN `config_values` USING (`field`)
LEFT JOIN `i18n`
ON `table` = 'config'
AND `field` = 'value'
AND `i18n`.`field` = 'value'
AND `object_id` = MD5(`config`.`field`)
WHERE `field` IN (
WHERE `config`.`field` IN (
'KITOOLBOX_TEXT_ESSENTIAL',
'KITOOLBOX_TEXT_RULES_FOR_TOOLS_TEMPLATE',
'KITOOLBOX_TEXT_LANDING_PAGE_STUDENT',
'KITOOLBOX_TEXT_LANDING_PAGE_TEACHER',
'KITOOLBOX_TEXT_LANDING_PAGE_TEACHER'
)";
DBManager::get()->exec($query);

Expand Down

0 comments on commit c9742d2

Please sign in to comment.