diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index 898b74d2..eb6dde15 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -79,7 +79,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 219; + const versionRevision = 220; /** * Version suffix string (when applicable) diff --git a/wire/modules/Fieldtype/FieldtypeFile/config.php b/wire/modules/Fieldtype/FieldtypeFile/config.php index c2e0dc60..40c7de74 100644 --- a/wire/modules/Fieldtype/FieldtypeFile/config.php +++ b/wire/modules/Fieldtype/FieldtypeFile/config.php @@ -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); } -} \ No newline at end of file +}