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:
@@ -45,7 +45,7 @@ class ProcessWire extends Wire {
|
||||
* Reversion revision number
|
||||
*
|
||||
*/
|
||||
const versionRevision = 81;
|
||||
const versionRevision = 82;
|
||||
|
||||
/**
|
||||
* Version suffix string (when applicable)
|
||||
|
@@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user