Skip to content

Commit

Permalink
fix(wizard): inconsistency between helpesk and service catalog
Browse files Browse the repository at this point in the history
helpdesk does not show all categories, but shows forms inside
  • Loading branch information
btry committed Aug 22, 2019
1 parent 84e9c68 commit 9a00c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ajax/homepage_wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
: true;
}

function plugin_formcreator_showWizardCategories($helpdeskHome = false) {
$tree = PluginFormcreatorCategory::getCategoryTree(0, $helpdeskHome);
function plugin_formcreator_showWizardCategories() {
$tree = PluginFormcreatorCategory::getCategoryTree(0, false);
echo json_encode($tree, JSON_UNESCAPED_SLASHES);
}

Expand Down

0 comments on commit 9a00c27

Please sign in to comment.