From cbb4db911c2414351fbc594b2a239bb687c5da8c Mon Sep 17 00:00:00 2001 From: moyooo Date: Sat, 30 Jul 2011 04:13:12 +0000 Subject: [PATCH] fix display version check git-svn-id: https://forge.glpi-project.org/svn/example/trunk@159 349b9182-4a13-0410-896f-e5e9767dd1b3 --- setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.php b/setup.php index f418d62..5d17f59 100755 --- a/setup.php +++ b/setup.php @@ -172,7 +172,7 @@ function plugin_example_check_prerequisites() { // Strict version check (could be less strict, or could allow various version) if (version_compare(GLPI_VERSION,'0.83','lt') || version_compare(GLPI_VERSION,'0.84','ge')) { - echo "This plugin requires GLPI >= 0.80"; + echo "This plugin requires GLPI >= 0.83"; return false; } return true;