From d1c11839c4f09d936d402bb05d258d90d01a5a56 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 3 Feb 2007 21:59:41 +0000 Subject: [PATCH] r1386: Adding the upgrade script for 1.1.5 --- install/global.php | 3 +- install/upgrade10.php | 77 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 install/upgrade10.php diff --git a/install/global.php b/install/global.php index 70b26ca..77cd0c1 100644 --- a/install/global.php +++ b/install/global.php @@ -82,7 +82,8 @@ $bugsys->versions = array( '1.1.1' => 7, '1.1.2' => 8, '1.1.3' => 9, - '1.1.4' => -1 + '1.1.4' => 10, + '1.1.5' => -1 ); // ################################################################### diff --git a/install/upgrade10.php b/install/upgrade10.php new file mode 100644 index 0000000..db2839e --- /dev/null +++ b/install/upgrade10.php @@ -0,0 +1,77 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.1.4 to Bugdar 1.1.5.

+ +

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