Skip to content
Snippets Groups Projects
Commit 77e44464 authored by JediKev's avatar JediKev
Browse files

issue: Default Help Topic Issue Summary

This addresses issue 4473 where users creating a ticket with the Help Topic
preselected shows a validation error for the Issue Summary field. This is
due to the new `getFormName()` function that creates new field form names
based on the user’s/agent’s session. When the Help Topic is preselected,
`_form` is not set for each field so the hashed name of the fields before
ticket submit is different than after ticket submit.
parent 4a4d5452
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ if ($info['topicId'] && ($topic=Topic::lookup($info['topicId']))) {
$F = $F->instanciate();
$F->isValidForClient();
}
$forms[] = $F;
$forms[] = $F->getForm();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment