1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 01:38:17 +03:00
ifhub.club/application/install/frontend/template/steps/updateVersion.tpl.php
2014-12-22 20:54:36 +07:00

14 lines
551 B
PHP

<div class="alert alert--info">
<div class="alert-title">Внимание!</div>
Перед обновлением обязательно сделайте бекап БД
</div>
<p><label for="">Ваша текущая версия:</label>
<select name="from_version" class="width-100">
<?php foreach ($this->get('convert_versions') as $version) { ?>
<option <?php if ($this->get('from_version') == $version) { ?> selected="selected" <?php } ?> >
<?php echo $version ?>
</option>
<?php } ?>
</select></p>