Skip to content

Commit

Permalink
Merge pull request #1342 from rbayet/fix-1310-rules-block-useles-esca…
Browse files Browse the repository at this point in the history
…peJs-2.6.x

Fixes #1310 Rules admin block w/o useless escapeJS
  • Loading branch information
romainruaud authored Mar 1, 2019
2 parents 9430a8a + 6e7869e commit 297cd27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function __construct(
*/
protected function _toHtml()
{
return $this->escapeJsQuote($this->getForm()->toHtml());
return $this->getForm()->toHtml();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function __construct(
*/
protected function _toHtml()
{
return $this->escapeJsQuote($this->getForm()->toHtml());
return $this->getForm()->toHtml();
}

/**
Expand Down

0 comments on commit 297cd27

Please sign in to comment.