* Finish task #78676.

This commit is contained in:
Yagami
2022-12-08 13:15:48 +08:00
parent e259eaea2b
commit fd0b180d71
5 changed files with 35 additions and 32 deletions
+7 -1
View File
@@ -377,7 +377,13 @@
<tr>
<th><?php echo $lang->release->branch;?></th>
<td>
<?php foreach($release->branches as $branchID) echo zget($branches, $branchID, '') . ' ';?>
<?php
foreach($release->branches as $branchID)
{
echo zget($branches, $branchID, '');
if($branchID != end($release->branches)) echo ', ';
}
?>
</td>
</tr>
<?php endif;?>