diff --git a/module/bug/model.php b/module/bug/model.php index bdae0cbc99..9a73603d2d 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -53,7 +53,7 @@ class bugModel extends model ->setDefault('openedBuild', '') ->setIF($this->post->assignedTo != '', 'assignedDate', $now) ->setIF($this->post->story != false, 'storyVersion', $this->loadModel('story')->getVersion($this->post->story)) - ->specialChars('title,steps,keyword') + ->specialChars('title,keyword') ->cleanInt('product, module, severity') ->join('openedBuild', ',') ->remove('files, labels') @@ -110,7 +110,7 @@ class bugModel extends model $now = helper::now(); $bug = fixer::input('post') ->cleanInt('product,module,severity,project,story,task') - ->specialChars('title,steps,keyword') + ->specialChars('title,keyword') ->remove('comment,files,labels') ->setDefault('project,module,project,story,task,duplicateBug', 0) ->setDefault('openedBuild', '') diff --git a/module/bug/view/buildtemplates.html.php b/module/bug/view/buildtemplates.html.php index bc721a113c..fb57365d5c 100644 --- a/module/bug/view/buildtemplates.html.php +++ b/module/bug/view/buildtemplates.html.php @@ -1,13 +1,37 @@