Skip to content

Commit 6e2378f

Browse files
author
Kristan Kenney
committed
Remove branch name from version display
Often wound up truncated or malformed on development builds due to branch name strategy.
1 parent b27cc66 commit 6e2378f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/templates/admin/list_services.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@
5555
<div class="l-unit__stat-col l-unit__stat-col--left wide"><b><?=__('Hestia Control Panel')?>:</b></div>
5656
<div class="l-unit__stat-col l-unit__stat-col--right">
5757
<? if($sys['sysinfo']['RELEASE'] != 'release') { ?>
58-
<i class="fas fa-flask icon-large status-icon red" title="Development release"></i>
58+
<i class="fas fa-flask icon-large status-icon red" title="<?php echo $sys['sysinfo']['RELEASE'];?>"></i>
5959
<? } ?>
6060
<? if($sys['sysinfo']['RELEASE'] == 'release') { ?>
61-
<i class="fas fa-cube icon-large status-icon" title="Official release"></i>
61+
<i class="fas fa-cube icon-large status-icon" title="<?=__('Production release')?>"></i>
6262
<? } ?>
63-
&nbsp;v<?=$sys['sysinfo']['HESTIA']?>&nbsp;&nbsp;<? if($sys['sysinfo']['RELEASE'] != 'release') { ?><i class="fas fa-code-branch"></i> <?=$sys['sysinfo']['RELEASE']?><? } ?></div>
63+
&nbsp;v<?=$sys['sysinfo']['HESTIA']?></div>
6464
</div>
6565
</td>
6666
<td>

0 commit comments

Comments
 (0)