blob: 66f822996adef984cad57b416a1187eaf37d8a80 (
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
|
{form legend="Begin the upgrade process"}
<h3>Upgrading {$upgradeFrom} to {$gBitSystem->getBitVersion()}</h3>
<p>The following packages will be updated: </p>
<ol>
{foreach from=$gBitSystem->mUpgrades key=pkg item=upHash }
<li>{$pkg}</li>
{/foreach}
</ol>
<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="TikiWiki 1.9">TikiWiki 1.9</option>
<option value="BWR0">Bitweaver ReleaseZero -BONNIE-</option>
</select>
{formhelp note="The type of application you intend to upgrade"}
{/forminput}
</div>
<div class="row">
{forminput}
<label><input type="checkbox" name="debug" id="debug" value="true" /> Debug mode</label>
{/forminput}
{formhelp note="Display SQL statements."}
</div>
<div class="row submit">
<input type="submit" name="upgrade" value="Upgrade Packages" />
</div>
{/form}
|