1
0
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:
Ryan Cramer
2023-06-09 15:28:28 -04:00
parent b8da82d5c2
commit dfcbb10f9d
2 changed files with 5 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 219;
const versionRevision = 220;
/**
* Version suffix string (when applicable)

View File

@@ -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);
}
}
}