1 | --- themes/Default/settings_channels.php.org 2005-10-17 16:11:51.000000000 +0200
|
---|
2 | +++ themes/Default/settings_channels.php 2005-10-17 16:11:56.000000000 +0200
|
---|
3 | @@ -40,6 +40,7 @@
|
---|
4 | <td width="5%"><?php echo t('recpriority') ?></td>
|
---|
5 | <td width="5%"><?php echo t('commfree') ?></td>
|
---|
6 | <td width="5%"><?php echo t('visible') ?></td>
|
---|
7 | + <td width="5%"><?php echo t('useonairguide') ?></td>
|
---|
8 | </tr><?php
|
---|
9 | foreach ($Channels as $channel) {
|
---|
10 | ?><tr class="settings" align="center">
|
---|
11 | @@ -58,6 +59,7 @@
|
---|
12 | <td><input type="text" size="2" name="recpriority_<?php echo $channel['chanid']?>" id="recpriority_<?php echo $channel['chanid']?>" value="<?php echo htmlentities($channel['recpriority'])?>"></td>
|
---|
13 | <td><input type="checkbox" name="commfree_<?php echo $channel['chanid']?>" <?php if (htmlentities($channel['commfree'])) echo "CHECKED" ?> ></td>
|
---|
14 | <td><input type="checkbox" name="visible_<?php echo $channel['chanid']?>" <?php if (htmlentities($channel['visible'])) echo "CHECKED" ?> ></td>
|
---|
15 | + <td><input type="checkbox" name="useonairguide_<?php echo $channel['chanid']?>" <?php if (htmlentities($channel['useonairguide'])) echo "CHECKED" ?> ></td>
|
---|
16 | </tr><?php
|
---|
17 | }
|
---|
18 | ?>
|
---|