Skip to content

Commit

Permalink
fix: typo causing a fatal error
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <[email protected]>
  • Loading branch information
btry committed Aug 13, 2021
1 parent 8fa2a3f commit fa8dc9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function plugin_init_formcreator() {
'items_id' => (int) $_GET['id']
]);
if (count($issues) == 1) {
$issueId = $array_pop($issues)['id'];
$issueId = array_pop($issues)['id'];
$issue->getById($issueId);
Html::redirect($issue->getFormURLWithID($issue->getID()) . $openItilFollowup);
}
Expand Down

0 comments on commit fa8dc9b

Please sign in to comment.