mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Update class name for selects
This commit is contained in:
parent
7ddf16da6a
commit
e00b2fcfde
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ function isAssoc($arr)
|
||||||
*/
|
*/
|
||||||
function SelectorOptions($name, $options, $selected = null, $id = null, $event = null, $disabled = null)
|
function SelectorOptions($name, $options, $selected = null, $id = null, $event = null, $disabled = null)
|
||||||
{
|
{
|
||||||
echo '<select class="form-control" name="'.htmlspecialchars($name, ENT_QUOTES).'"';
|
echo '<select class="form-select" name="'.htmlspecialchars($name, ENT_QUOTES).'"';
|
||||||
if (isset($id)) {
|
if (isset($id)) {
|
||||||
echo ' id="' . htmlspecialchars($id, ENT_QUOTES) .'"';
|
echo ' id="' . htmlspecialchars($id, ENT_QUOTES) .'"';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue