Fixed gh-324 that had a typo with the storing of the PHPx values. Improved the safeString helper method

This commit is contained in:
2018-07-23 04:53:59 +02:00
parent 6dd654c745
commit 812857da81
9 changed files with 51 additions and 15 deletions

View File

@ -2341,7 +2341,7 @@ class Get
if ($this->validationRules[$validationRule] = ComponentbuilderHelper::getVar('validation_rule', $validationRule, 'name', 'php'))
{
// open and set the validation rule
$this->validationRules[$validationRule] = $this->setDynamicValues(base64_decode($this->validationRules[$validationRule]));
$this->validationRules[$validationRule] = $this->setPlaceholders($this->setDynamicValues(base64_decode($this->validationRules[$validationRule])), $this->placeholders);
}
else
{