From f135ba35a8384b86c6d6a00afd85125784e62c74 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Thu, 19 Feb 2009 22:24:48 +0000 Subject: [PATCH] Allow version numbers to omit trailing zeros git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13404 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/plugin.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/functions/plugin.php b/functions/plugin.php index 337ca733..d3a13f91 100644 --- a/functions/plugin.php +++ b/functions/plugin.php @@ -1003,8 +1003,10 @@ function check_plugin_dependencies($plugin_name, $force_inclusion = FALSE) // $version = explode('.', $depend_requirements['version'], 3); $version[0] = intval($version[0]); - $version[1] = intval($version[1]); - $version[2] = intval($version[2]); + if (isset($version[1])) $version[1] = intval($version[1]); + else $version[1] = 0; + if (isset($version[2])) $version[2] = intval($version[2]); + else $version[2] = 0; $force_dependency_inclusion = !$depend_requirements['activate']; -- 2.25.1