Skip to content

Commit

Permalink
fix(form): bad itemtypes names
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Apr 23, 2024
1 parent 2d5ad80 commit 11d9e6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/form.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -716,8 +716,8 @@ public static function getFormList(int $rootCategory = 0, string $keywords = '',

$table_cat = getTableForItemType(PluginFormcreatorCategory::class);
$table_form = getTableForItemType(PluginFormcreatorForm::class);
$table_section = getTableForItemType(PluginFormcreatorSections::class);
$table_question = getTableForItemType(PluginFormcreatorQuestions::class);
$table_section = getTableForItemType(PluginFormcreatorSection::class);
$table_question = getTableForItemType(PluginFormcreatorQuestion::class);

$categoryFk = PluginFormcreatorCategory::getForeignKeyField();

Expand Down

0 comments on commit 11d9e6b

Please sign in to comment.