Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Commit

Permalink
Allow , in Textareas.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimbtech committed Mar 10, 2020
1 parent 110cf72 commit 32b1561
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
latest
1.2.5
1.2.6
1.2
1
2 changes: 1 addition & 1 deletion core/PollCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PollCreator{
* Input check constants
*/
const PREG_TEXTINPUT = '/[^A-Za-z0-9 :\.\-_ÄÜÖäüöß]/';
const PREG_TEXTAREA = '/[^A-Za-z0-9 :\/\*\#\.\-_ÄÜÖäüöß\r\n]/';
const PREG_TEXTAREA = '/[^A-Za-z0-9 :\/\,\*\#\.\-_ÄÜÖäüöß\r\n]/';
const PREG_NUMBER = '/[^0-9]/';
/**
* Max inputs lenghts
Expand Down
2 changes: 1 addition & 1 deletion core/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Utilities {
/**
* The system's Version
*/
const SYS_VERSION = 'v1.2.5';
const SYS_VERSION = 'v1.2.6';

/**
* Possible chars for:
Expand Down

0 comments on commit 32b1561

Please sign in to comment.