diff options
author | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2018-12-14 14:22:28 -0500 |
---|---|---|
committer | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2018-12-14 14:22:28 -0500 |
commit | 3416190e4b8887b91e497529d9e9bb60231beca9 (patch) | |
tree | 325c2d218b3630f2efcab455eef023c5dade0bcd /include | |
parent | f81a3ba45d50c0a0e4da68c17aba73425058e23d (diff) | |
download | volse-hubzilla-3416190e4b8887b91e497529d9e9bb60231beca9.tar.gz volse-hubzilla-3416190e4b8887b91e497529d9e9bb60231beca9.tar.bz2 volse-hubzilla-3416190e4b8887b91e497529d9e9bb60231beca9.zip |
Set min/maxversion for plugins to STD_VERSION unless otherwise specified
Diffstat (limited to 'include')
-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(), |