diff options
author | Mario <mario@mariovavti.com> | 2018-12-15 20:32:01 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-15 20:32:01 +0100 |
commit | dbeabb8ff08819e35774b527c18c31ba9237ca3f (patch) | |
tree | 8d28041125a90564bd1980ac1860c1970e850973 | |
parent | cc66e1d96607c0f57036f0ba4505a128d695730b (diff) | |
parent | 3416190e4b8887b91e497529d9e9bb60231beca9 (diff) | |
download | volse-hubzilla-dbeabb8ff08819e35774b527c18c31ba9237ca3f.tar.gz volse-hubzilla-dbeabb8ff08819e35774b527c18c31ba9237ca3f.tar.bz2 volse-hubzilla-dbeabb8ff08819e35774b527c18c31ba9237ca3f.zip |
Merge branch 'patch-20181214f' into 'dev'
Set min/maxversion for plugins to STD_VERSION unless otherwise specified
See merge request hubzilla/core!1430
-rwxr-xr-x | include/plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/plugin.php b/include/plugin.php index 8ceb6417e..7eeb39ce8 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -736,8 +736,8 @@ function get_theme_info($theme){ 'description' => '', 'author' => array(), 'version' => '', - 'minversion' => '', - 'maxversion' => '', + 'minversion' => STD_VERSION, + 'maxversion' => STD_VERSION, 'compat' => '', 'credits' => '', 'maintainer' => array(), |