Merge pull request #223 from D9ping/Branch_D9ping

Fixed stray html option end tag.
This commit is contained in:
Bill Zimmerman 2018-08-16 07:20:48 -07:00 committed by GitHub
commit 1ac167bf29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ function SelectorOptions($name, $options, $selected = null) {
}
echo '<option value="'.htmlspecialchars($key, ENT_QUOTES).'"'.$select.'>'.
htmlspecialchars($label, ENT_QUOTES).'</options>' , PHP_EOL;
htmlspecialchars($label, ENT_QUOTES).'</option>' , PHP_EOL;
}
echo '</select>' , PHP_EOL;