From 60519387f63bed3f76d1c0354be605a149a4f2ba Mon Sep 17 00:00:00 2001 From: Alexandre Delaunay Date: Mon, 11 Apr 2016 09:25:53 +0200 Subject: [PATCH] 0.90.3 version --- config/define.php | 2 +- install/mysql/glpi-0.90-empty.sql | 2 +- install/update.php | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/define.php b/config/define.php index ff333334b4c..34e2b39ecab 100644 --- a/config/define.php +++ b/config/define.php @@ -36,7 +36,7 @@ */ // Current version of GLPI -define("GLPI_VERSION","0.90.2"); +define("GLPI_VERSION","0.90.3"); define("GLPI_DEMO_MODE","0"); define("GLPI_USE_CSRF_CHECK", "1"); diff --git a/install/mysql/glpi-0.90-empty.sql b/install/mysql/glpi-0.90-empty.sql index 89a66768816..83fdd028be3 100644 --- a/install/mysql/glpi-0.90-empty.sql +++ b/install/mysql/glpi-0.90-empty.sql @@ -794,7 +794,7 @@ CREATE TABLE `glpi_configs` ( UNIQUE KEY `unicity` (`context`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -INSERT INTO `glpi_configs` VALUES ('1','core','version','0.90.2'); +INSERT INTO `glpi_configs` VALUES ('1','core','version','0.90.3'); INSERT INTO `glpi_configs` VALUES ('2','core','show_jobs_at_login','0'); INSERT INTO `glpi_configs` VALUES ('3','core','cut','250'); INSERT INTO `glpi_configs` VALUES ('4','core','list_limit','15'); diff --git a/install/update.php b/install/update.php index a3de77d3590..33ce7937f7b 100644 --- a/install/update.php +++ b/install/update.php @@ -791,6 +791,7 @@ function updateDbUpTo031() { update0901to0902(); case "0.90.2" : + case "0.90.3" : break; default : @@ -821,7 +822,7 @@ function updateDbUpTo031() { } // Update version number and default langage and new version_founded ---- LEAVE AT THE END - Config::setConfigurationValues('core', array('version' => '0.90.2', + Config::setConfigurationValues('core', array('version' => '0.90.3', 'language' => $glpilanguage, 'founded_new_version' => ''));