We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89be912 commit 131fd50Copy full SHA for 131fd50
helper/field.php
@@ -43,7 +43,8 @@ public function initialize($args) {
43
protected function setVal($value) {
44
if(!$this->column) {
45
$value = '';
46
- } else {
+ //don't validate placeholders here
47
+ } elseif($this->replace($value) == $value) {
48
$validator = new ValueValidator();
49
$this->error = !$validator->validateValue($this->column, $value);
50
if($this->error) {
0 commit comments