Fixed custom colour checkbox state being inverse.

This commit is contained in:
flash 2018-12-05 17:57:40 +01:00
parent 825899beea
commit fa951c5da2
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ switch ($_GET['v'] ?? null) {
break;
}
$usersTake = 33;
$usersTake = 30;
$manageUsersCount = db_query('
SELECT COUNT(`user_id`)
FROM `msz_users`

View file

@ -102,7 +102,7 @@
<label class="form__label">
<div class="form__label__text">Custom Colour</div>
<div class="form__label__input">
{{ input_checkbox('colour[enable]', '', colour_props.inherit) }}
{{ input_checkbox('colour[enable]', '', not colour_props.inherit) }}
</div>
</label>