blob: 9013702ec5ee1838eaefb3eccc9f0688035d1fa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<h3>Upgrading {$upgradeFrom} to {$bitMajorVersion}{$bitMinorVersion} -{$bitBranch}-</h3>
<p>The following packages will be updated</p>
<ol>
{foreach from=$gBitSystem->mUpgrades key=pkg item=upHash }
<li>{$pkg}</li>
{/foreach}
</ol>
{form legend="Begin the upgrade process"}
<input type="hidden" name="step" value="{$next_step}" />
<div class="row">
{formlabel label="Upgrade Application" for="db"}
{forminput}
<select name="upgrade_from">
<option value="TikiWiki 1.8">TikiWiki 1.8</option>
<option value="BONNIE">bitweaver ReleaseZero -BONNIE-</option>
{formhelp note="The type of application you intend to upgrade"}
</select>
{/forminput}
</div>
<div class="row">
{formlabel label="Debug mode" for="debug"}
{forminput}
<input type="checkbox" name="debug" id="debug" value="true" />
{formhelp note="This will display SQL statements."}
{/forminput}
</div>
<div class="row submit">
<input type="submit" name="upgrade" value="Upgrade Packages" />
</div>
{/form}
|