Update for better view

- Display stream labels as a list (Settings -> Stream settings -> Global)
This commit is contained in:
farggus 2020-03-22 15:46:39 +02:00 committed by GitHub
parent 7ea00b8437
commit d24aa25fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@
<?php foreach ($this->form->getElement('streamFormat')->getMultiOptions() as $radio) : ?>
<label for="streamFormat-<?php echo $i ?>">
<input type="radio" value="<?php echo $i ?>" id="streamFormat-<?php echo $i ?>" name="streamFormat" <?php if($i == $value){echo 'checked="checked"';}?> >
<?php echo $radio ?>
<?php echo $radio ?> <br><br>
</input>
</label>
<?php $i = $i + 1; ?>