blob: 0b1ae7854decb23d63410c8487a20b22502a1046 (
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
|
<div class="update">
<form name="updateForm" class="updateForm">
<h2 class="title bold">
<?php p($l->t('%s will be updated to version %s.',
array($_['productName'], $_['version']))); ?>
</h2>
<?php if (!empty($_['appList'])) { ?>
<div class="section">
<div class="title bold"><?php p($l->t('The following apps will be disabled during the upgrade:')) ?></div>
<ul class="content appList">
<?php foreach ($_['appList'] as $appName) { ?>
<li><?php p($appName) ?></li>
<?php } ?>
</ul>
</div>
<?php } ?>
<?php if (!empty($_['oldTheme'])) { ?>
<div class="section">
<div class="title bold"><?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?></div>
</div>
<?php } ?>
<div class="section">
<div class="title bold"><?php p($l->t('Please make sure that the database and the data folder have been backed up before proceeding.')) ?></div>
</div>
<div class="section">
<input type="submit" value="<?php p($l->t('Start upgrade')) ?>"></input>
</div>
</form>
<div class="updateProgress hidden">
</div>
</div>
|