automatic issue resolving:

- removed comments
- automatically added issue_id to params, output the id in error messages
This commit is contained in:
KarpAlex
2022-01-17 21:46:19 +01:00
parent 82dbe27112
commit de60770e74
13 changed files with 13 additions and 18 deletions
@@ -51,7 +51,7 @@ abstract class IssueResolver_Controller extends JOB_Controller
// add person id and oe kurzbz automatically as params, merge it with additional params
// decode bewerbung_parameter into assoc array
$params = array_merge(
array('issue_person_id' => $issue->person_id, 'issue_oe_kurzbz' => $issue->oe_kurzbz),
array('issue_id' => $issue->issue_id, 'issue_person_id' => $issue->person_id, 'issue_oe_kurzbz' => $issue->oe_kurzbz),
isset($issue->behebung_parameter) ? json_decode($issue->behebung_parameter, true) : array()
);