mirror of
https://github.com/processwire/processwire.git
synced 2025-08-10 00:37:02 +02:00
Bump version to 3.0.212
This commit is contained in:
@@ -775,7 +775,8 @@ class InputfieldWrapper extends Inputfield implements \Countable, \IteratorAggre
|
|||||||
$errors = $inputfield->getErrors(true);
|
$errors = $inputfield->getErrors(true);
|
||||||
if(count($errors)) {
|
if(count($errors)) {
|
||||||
$collapsed = $renderValueMode ? Inputfield::collapsedNoLocked : Inputfield::collapsedNo;
|
$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();
|
} else $errors = array();
|
||||||
|
|
||||||
|
@@ -79,7 +79,7 @@ class ProcessWire extends Wire {
|
|||||||
* Reversion revision number
|
* Reversion revision number
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
const versionRevision = 211;
|
const versionRevision = 212;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Version suffix string (when applicable)
|
* Version suffix string (when applicable)
|
||||||
|
Reference in New Issue
Block a user