Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
From dbe382950da9f01e3aa121ed5850df6806a15c74 Mon Sep 17 00:00:00 2001
From: Robert Sesek
Date: Tue, 13 Jan 2009 12:50:39 -0500
Subject: [PATCH] Adding the upgrade script for version 1.2.3
* install/global.php: Add the version record
* install/upgrade18.php: New file
---
install/global.php | 3 ++-
install/upgrade18.php | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+), 1 deletion(-)
create mode 100644 install/upgrade18.php
diff --git a/install/global.php b/install/global.php
index c0f2950..241dd0e 100644
--- a/install/global.php
+++ b/install/global.php
@@ -97,7 +97,8 @@ $bugsys->versions = array(
'1.2.0 Release Candidate 1' => 15,
'1.2.0' => 16,
'1.2.1' => 17,
- '1.2.2' => -1
+ '1.2.2' => 18,
+ '1.2.3' => -1
);
// ###################################################################
diff --git a/install/upgrade18.php b/install/upgrade18.php
new file mode 100644
index 0000000..fd31e2e
--- /dev/null
+++ b/install/upgrade18.php
@@ -0,0 +1,69 @@
+in['mark'] == 0)
+{
+?>
+Welcome to Bugdar
+
+This upgrade will take from Bugdar 1.2.2 to Bugdar 1.2.3.
+
+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.3' WHERE varname = 'trackerversion'");
+
+ build_settings();
+
+?>
+
+... done.
+
+
\ No newline at end of file
--
1.7.11.3