mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[BridgeCard] Fix checkbox default value (#874)
The current solution just output "1" when checked instead of "checked"
This commit is contained in:
parent
ea2d54523d
commit
9820ad5c0f
@ -193,7 +193,7 @@ This bridge is not fetching its content through a secure connection</div>';
|
|||||||
. '" type="checkbox" name="'
|
. '" type="checkbox" name="'
|
||||||
. $name
|
. $name
|
||||||
. '" '
|
. '" '
|
||||||
. ($entry['defaultValue'] === 'checked' ?: '')
|
. ($entry['defaultValue'] === 'checked' ? 'checked' : '')
|
||||||
. ' />'
|
. ' />'
|
||||||
. PHP_EOL;
|
. PHP_EOL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user