Skip to content
Snippets Groups Projects
Commit 79b7a25f authored by srosse's avatar srosse
Browse files

OO-903: revert filter the control characters as it is too dangerous

parent 7f391941
No related branches found
No related tags found
No related merge requests found
...@@ -167,7 +167,7 @@ public abstract class AbstractTextElement extends FormItemImpl implements TextEl ...@@ -167,7 +167,7 @@ public abstract class AbstractTextElement extends FormItemImpl implements TextEl
} }
} }
this.value = value.replaceAll("\\p{C}", ""); this.value = value;//.replaceAll("\\p{Cc}", "");
Component c = getComponent(); Component c = getComponent();
if (c != null) { if (c != null) {
// c may be null since it is only created when this formelement is added to a FormItemContainer // c may be null since it is only created when this formelement is added to a FormItemContainer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment