From d9f8479cdfc4b7108c116f42e7bd7e152533b970 Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 25 Jun 2011 22:03:12 +0000 Subject: feature 2365 added: Piwigo version is written in the database (as "piwigo_db_version" in the config table). We only store the branch, not the release : 2.3 and not 2.3.1, because database structure is not changing between minor releases. git-svn-id: http://piwigo.org/svn/trunk@11511 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/common.inc.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/common.inc.php') diff --git a/include/common.inc.php b/include/common.inc.php index 048290e19..6081220e6 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -132,6 +132,15 @@ catch (Exception $e) pwg_db_check_charset(); load_conf_from_db(); + +if (!$conf['check_upgrade_feed']) +{ + if (!isset($conf['piwigo_db_version']) or $conf['piwigo_db_version'] != get_branch_from_version(PHPWG_VERSION)) + { + redirect(get_root_url().'upgrade.php'); + } +} + load_plugins(); include(PHPWG_ROOT_PATH.'include/user.inc.php'); -- cgit v1.2.3