Skip to content

Commit 1296925

Browse files
committed
fix(target ticket): backquote in ticket ticle
fix #951
1 parent f09e685 commit 1296925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/targetticket.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ public function save(PluginFormcreatorForm_Answer $formanswer) {
11081108
// TODO: generate instances of all answers of the form and use them for the fullform computation
11091109
// and the computation from a admin-defined target ticket template
11101110
$data['name'] = $this->fields['name'];
1111-
$data['name'] = addslashes($this->parseTags($data['name'], $formanswer));
1111+
$data['name'] = $this->parseTags($data['name'], $formanswer);
11121112

11131113
$data['content'] = addslashes($this->fields['comment']);
11141114
$data['content'] = str_replace("\r\n", '\r\n', $data['content']);

0 commit comments

Comments
 (0)