Skip to content

Commit

Permalink
Bugfix for escape characters
Browse files Browse the repository at this point in the history
  • Loading branch information
havok89 committed Nov 14, 2016
1 parent 4848875 commit f7235ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hoosk/hoosk0/third_party/Sioen/Types/HeadingConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public function toJson(\DOMElement $node)

public function toHtml(array $data)
{
return "<".$data['heading'].">".$data['text'] . "</".$data['heading'].">";
return "<".$data['heading'].">".stripslashes($data['text']) . "</".$data['heading'].">";
}
}

0 comments on commit f7235ce

Please sign in to comment.