From b1d54d1312b8be2cf90fc573b81e2402cbf78f0c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 13 Jan 2009 12:50:39 -0500 Subject: [PATCH] Adding the upgrade script for version 1.2.3 * install/global.php: Add the version record * install/upgrade18.php: New file --- install/global.php | 3 +- install/upgrade18.php | 69 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 install/upgrade18.php diff --git a/install/global.php b/install/global.php index 147a255..3db62d4 100644 --- a/install/global.php +++ b/install/global.php @@ -97,7 +97,8 @@ $bugsys->versions = array( '1.2.0 Release Candidate 1' => 15, '1.2.0' => 16, '1.2.1' => 17, - '1.2.2' => -1 + '1.2.2' => 18, + '1.2.3' => -1 ); // ################################################################### diff --git a/install/upgrade18.php b/install/upgrade18.php new file mode 100644 index 0000000..fd31e2e --- /dev/null +++ b/install/upgrade18.php @@ -0,0 +1,69 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.2.2 to Bugdar 1.2.3.

+ +

To begin the process, please click the button below.

+in['mark'] == 1) +{ +?> +

Version Number Change

+ +

This step finishes the upgrade by inreasing your version number.

+ +query("UPDATE " . TABLE_PREFIX . "setting SET value = '1.2.3' WHERE varname = 'trackerversion'"); + + build_settings(); + +?> + +... done. + + \ No newline at end of file -- 2.22.5