1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-10 08:44:46 +02:00

Bump version to 3.0.82

This commit is contained in:
Ryan Cramer
2017-11-03 10:51:44 -04:00
parent 8e27f859c0
commit 7398267be1
2 changed files with 7 additions and 6 deletions

View File

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

View File

@@ -163,11 +163,12 @@ class InputfieldFile extends Inputfield implements InputfieldItemList, Inputfiel
}
public function get($key) {
if($key == 'renderValueMode') return $this->renderValueMode;
if($key == 'singleFileReplacement') return $this->singleFileReplacement;
if($key == 'descriptionFieldLabel') return $this->labels['description'];
if($key == 'tagsFieldLabel') return $this->labels['tags'];
if($key == 'deleteLabel') return $this->labels['delete'];
if($key === 'renderValueMode') return $this->renderValueMode;
if($key === 'singleFileReplacement') return $this->singleFileReplacement;
if($key === 'descriptionFieldLabel') return $this->labels['description'];
if($key === 'tagsFieldLabel') return $this->labels['tags'];
if($key === 'deleteLabel') return $this->labels['delete'];
if($key === 'themeSettings') return $this->themeSettings;
return parent::get($key);
}