From dc2a7e21cdc2a52f7dd5732010010369bdee607a Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 12 Oct 2006 01:31:05 +0000 Subject: [PATCH] r1242: Adding the upgrade script --- install/global.php | 3 +- install/upgrade6.php | 79 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 install/upgrade6.php diff --git a/install/global.php b/install/global.php index 897b82a..c224cc9 100644 --- a/install/global.php +++ b/install/global.php @@ -78,7 +78,8 @@ $bugsys->versions = array( '1.1.0 Beta 1' => 3, '1.1.0 Beta 2' => 4, '1.1.0 Release Candidate 1' => 5, - '1.1.0' => -1 + '1.1.0' => 6, + '1.1.1' => -1 ); // ################################################################### diff --git a/install/upgrade6.php b/install/upgrade6.php new file mode 100644 index 0000000..5e5d537 --- /dev/null +++ b/install/upgrade6.php @@ -0,0 +1,79 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.1.0 (final) to Bugdar 1.1.1.

+ +

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'] == 2) +{ +?> +

Version Number Change

+ +

This step finishes the upgrade by inreasing your version number.

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