diff --git a/wire/core/InputfieldWrapper.php b/wire/core/InputfieldWrapper.php index bbd7cf1a..181d3cbb 100644 --- a/wire/core/InputfieldWrapper.php +++ b/wire/core/InputfieldWrapper.php @@ -775,7 +775,8 @@ class InputfieldWrapper extends Inputfield implements \Countable, \IteratorAggre $errors = $inputfield->getErrors(true); if(count($errors)) { $collapsed = $renderValueMode ? Inputfield::collapsedNoLocked : Inputfield::collapsedNo; - $errorsOut = implode(', ', $errors); + $comma = $this->_(','); // Comma or other character to separate multiple error messages + $errorsOut = implode("$comma ", $errors); } } else $errors = array(); diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index 4f0f99f3..f974855b 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -79,7 +79,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 211; + const versionRevision = 212; /** * Version suffix string (when applicable)