diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-27 10:13:08 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-27 10:13:08 +0100 |
commit | 0f208fb36bca5e3395d34ce3553d98bab389ddd3 (patch) | |
tree | 333cbaf6517111b4af41d96fa20258339ddde041 /Zotlabs/Module/Settings | |
parent | 4f07abe65586d66b0000e9b877ce467d71178aa2 (diff) | |
download | volse-hubzilla-0f208fb36bca5e3395d34ce3553d98bab389ddd3.tar.gz volse-hubzilla-0f208fb36bca5e3395d34ce3553d98bab389ddd3.tar.bz2 volse-hubzilla-0f208fb36bca5e3395d34ce3553d98bab389ddd3.zip |
set minversion and maxversion for themes in view/theme/themename/php/theme.php instead of separate file.
Diffstat (limited to 'Zotlabs/Module/Settings')
-rw-r--r-- | Zotlabs/Module/Settings/Display.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Settings/Display.php b/Zotlabs/Module/Settings/Display.php index d5be07a81..ee404daba 100644 --- a/Zotlabs/Module/Settings/Display.php +++ b/Zotlabs/Module/Settings/Display.php @@ -131,8 +131,9 @@ class Display { foreach($allowed_themes as $th) { $f = $th; - $min_version = ((file_exists('view/theme/' . $th . '/.MINVERSION')) ? file_get_contents('view/theme/' . $th . '/.MINVERSION') : 0); - if((version_compare($min_version, STD_VERSION, '>=')) || ($min_version == 0)) { + $info = get_theme_info($th); + $compatible = check_plugin_versions($info); + if(!$compatible) { $mobile_themes[$f] = $themes[$f] = sprintf(t('%s - (Incompatible)'), $f); continue; } |