mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-05 07:03:29 -04:00
Fix Minz_Extension::getVersion (#5891)
Regression from https://github.com/FreshRSS/FreshRSS/pull/5830
This commit is contained in:
committed by
GitHub
parent
e70e5542e4
commit
445e49db15
@@ -56,7 +56,7 @@ abstract class Minz_Extension {
|
||||
$this->path = $meta_info['path'];
|
||||
$this->author = isset($meta_info['author']) ? $meta_info['author'] : '';
|
||||
$this->description = isset($meta_info['description']) ? $meta_info['description'] : '';
|
||||
$this->version = isset($meta_info['version']) ? $meta_info['version'] : '0.1';
|
||||
$this->version = isset($meta_info['version']) ? (string)$meta_info['version'] : '0.1';
|
||||
$this->setType(isset($meta_info['type']) ? $meta_info['type'] : 'user');
|
||||
|
||||
$this->is_enabled = false;
|
||||
|
||||
Reference in New Issue
Block a user