Skip to content

Commit

Permalink
fix(targetticket,targetchange): tags from queestion or specific tags …
Browse files Browse the repository at this point in the history
…not saved
  • Loading branch information
VladoTTX authored and btry committed Sep 5, 2022
1 parent 76afea7 commit dc95c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/targetchange.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -581,12 +581,12 @@ public function prepareInputForUpdate($input) {
}

if (Plugin::isPluginActive('tag')) {
if (isset($input['tag_questions'])) {
if (isset($input['_tag_questions'])) {
$input['tag_questions'] = (!empty($input['_tag_questions']))
? implode(',', $input['_tag_questions'])
: '';
}
if (isset($input['tag_specifics'])) {
if (isset($input['_tag_specifics'])) {
$input['tag_specifics'] = (!empty($input['_tag_specifics']))
? implode(',', $input['_tag_specifics'])
: '';
Expand Down

0 comments on commit dc95c73

Please sign in to comment.