Skip to content

Commit a6482f7

Browse files
committed
Fix #11368, this fixes the label on the filters section to actually apply to the filters as specified.
1 parent 1e73a73 commit a6482f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/tv/tmpl/default/_advanced_options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ function messageDialog(title, msg) {
346346
<?php
347347
foreach ($schedule->recordFilters() as $id => $filter) {
348348
?>
349-
<dt><label for="recordfilter_$id"><?php echo t($filter['description']) ?>:</label></dt>
349+
<dt><label for="recordfilter_<?php echo $id; ?>"><?php echo t($filter['description']) ?>:</label></dt>
350350
<dd><input type="checkbox" class="radio" id="recordfilter_<?php echo $id ?>" name="recordfilter_<?php echo $id ?>"<?php if ($filter['enabled']) echo ' CHECKED' ?> value="1"></dd>
351351
<?php } ?>
352352
</fieldset>

0 commit comments

Comments
 (0)