2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2004-2008 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 define('STOP_MARK', 1);
23 define('ACTIVE_SITE', 'upgrade1.php');
25 require_once('./global.php');
29 // ###################################################################
31 if ($input->in
['mark'] == 0)
34 <h1
>Welcome to Bugdar
</h1
>
36 <p
>This upgrade will take from Bugdar
1.0.0 to Bugdar
1.0.1.</p
>
38 <p
>The following steps
do not make any major changes except
for increasing your version number
, as this is a mostly file
-based upgrade
.</p
>
40 <p
>To begin the process
, please click the button below
.</p
>
44 // ###################################################################
46 if ($input->in
['mark'] == 1)
49 <h1
>Version Number Change
</h1
>
51 <p
>This step finishes the upgrade by inreasing your version number
.</p
>
55 $db->query("UPDATE " . TABLE_PREFIX
. "setting SET value = '1.0.1' WHERE varname = 'trackerversion'");
66 // ###################################################################