Skip to content

Commit

Permalink
Update tag input parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
VladoTTX authored and btry committed Sep 5, 2022
1 parent 8413e0a commit 76afea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/targetticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -685,12 +685,12 @@ public function prepareInputForUpdate($input) {

$plugin = new Plugin();
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 76afea7

Please sign in to comment.