mirror of
https://github.com/processwire/processwire.git
synced 2025-08-13 10:15:28 +02:00
Bump version to 3.0.220
This commit is contained in:
@@ -79,7 +79,7 @@ class ProcessWire extends Wire {
|
||||
* Reversion revision number
|
||||
*
|
||||
*/
|
||||
const versionRevision = 219;
|
||||
const versionRevision = 220;
|
||||
|
||||
/**
|
||||
* Version suffix string (when applicable)
|
||||
|
@@ -252,8 +252,9 @@ class FieldtypeFileConfiguration extends Wire {
|
||||
$f = $modules->get('InputfieldRadios');
|
||||
$f->attr('name', 'outputFormat');
|
||||
$f->label = $this->_('Formatted value');
|
||||
$f->description = $this->_('Select the type of value you want this field to provide when accessed from the API on the front-end of your site.');
|
||||
$f->description .= sprintf($this->_('When output formatting is off, the value is always a %s array.'), $typeMulti);
|
||||
$f->description =
|
||||
$this->_('Select the type of value you want this field to provide when accessed from the API on the front-end of your site.') . ' ' .
|
||||
sprintf($this->_('When output formatting is off, the value is always a %s array.'), $typeMulti);
|
||||
|
||||
$f->addOption(FieldtypeFile::outputFormatAuto,
|
||||
$this->_('Automatic') . ' ' .
|
||||
@@ -608,4 +609,4 @@ class FieldtypeFileConfiguration extends Wire {
|
||||
$f->val($this->fieldtype->getAllowFieldtypes());
|
||||
$inputfields->add($f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user