From 362ccacf67f0fd341fe118c904edae14c1feef98 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 13 Oct 2006 00:47:24 +0000 Subject: [PATCH] r1250: Adding the upgrade script --- install/global.php | 3 +- install/upgrade7.php | 79 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 install/upgrade7.php diff --git a/install/global.php b/install/global.php index c224cc9..bfc031d 100644 --- a/install/global.php +++ b/install/global.php @@ -79,7 +79,8 @@ $bugsys->versions = array( '1.1.0 Beta 2' => 4, '1.1.0 Release Candidate 1' => 5, '1.1.0' => 6, - '1.1.1' => -1 + '1.1.1' => 7, + '1.1.2' => -1 ); // ################################################################### diff --git a/install/upgrade7.php b/install/upgrade7.php new file mode 100644 index 0000000..2cc5a5c --- /dev/null +++ b/install/upgrade7.php @@ -0,0 +1,79 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.1.1 to Bugdar 1.1.2.

+ +

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