fix missing ] on checkboxx

pull/4202/head
Isaac Connor 2022-05-05 10:09:56 -04:00
parent b1ac4981bf
commit 994662985f
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ foreach ( array_map('basename', glob('skins/'.$skin.'/css/*', GLOB_ONLYDIR)) as
<div class="col-md">
<?php
if ( $value['Type'] == 'boolean' ) {
echo '<input type="checkbox" id="'.$name.'" name="newConfig['.$name.'" value="1"'.
echo '<input type="checkbox" id="'.$name.'" name="newConfig['.$name.']" value="1"'.
( $value['Value'] ? ' checked="checked"' : '').
( $optionCanEdit ? '' : ' disabled="disabled"').' />'.PHP_EOL;
} else if ( is_array($value['Hint']) ) {