From 1bd7bb35522276d45de385dd849374edd420dd83 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 15 Oct 2006 02:08:08 +0000 Subject: [PATCH] r1263: Adding the upgrade scripts --- install/global.php | 3 +- install/upgrade8.php | 79 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 install/upgrade8.php diff --git a/install/global.php b/install/global.php index bfc031d..fc0a77d 100644 --- a/install/global.php +++ b/install/global.php @@ -80,7 +80,8 @@ $bugsys->versions = array( '1.1.0 Release Candidate 1' => 5, '1.1.0' => 6, '1.1.1' => 7, - '1.1.2' => -1 + '1.1.2' => 8, + '1.1.3' => -1 ); // ################################################################### diff --git a/install/upgrade8.php b/install/upgrade8.php new file mode 100644 index 0000000..b84ed51 --- /dev/null +++ b/install/upgrade8.php @@ -0,0 +1,79 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.1.2 to Bugdar 1.1.3.

+ +

Not much has to be done, we just have to update your version number.

+ +

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.1.3' WHERE varname = 'trackerversion'"); + + build_settings(); + +?> + +... done. + + \ No newline at end of file -- 2.22.5