From 3c599b36bae41438f4339b89c559c990c6520b14 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 31 May 2007 17:54:36 +0000 Subject: [PATCH] r1547: Adding the upgrade14.php script which runs the upgrade to 1.2.0 RC1 --- install/global.php | 3 +- install/upgrade14.php | 86 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 install/upgrade14.php diff --git a/install/global.php b/install/global.php index 1cc2c03..da3732f 100644 --- a/install/global.php +++ b/install/global.php @@ -86,7 +86,8 @@ $bugsys->versions = array( '1.1.5' => 11, '1.2.0 Beta 1' => 12, '1.2.0 Beta 2' => 13, - '1.2.0 Beta 3' => -1 + '1.2.0 Beta 3' => 14, + '1.2.0 Release Candidate 1' => -1 ); // ################################################################### diff --git a/install/upgrade14.php b/install/upgrade14.php new file mode 100644 index 0000000..8dc86a8 --- /dev/null +++ b/install/upgrade14.php @@ -0,0 +1,86 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.2.0 Beta 3 to Bugdar 1.2.0 Release Candidate 1.

+ +

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.0 Release Candidate 1' WHERE varname = 'trackerversion'"); + + build_settings(); + +?> + +... done. + +in['mark'] == 2) +{ +?> +

Database Character Set and Collation

+

Earlier versions of Bugdar did not recommend or enforce database character set support. Unless you have a very good reason not to (you should know if you do), it is recommended that you run this script to convert your MySQL database from your current character set to UTF8. This should especially help international users.

+

This step is not required.

+ \ No newline at end of file -- 2.22.5