Skip to content

Commit

Permalink
Merge pull request #223 from D9ping/Branch_D9ping
Browse files Browse the repository at this point in the history
Fixed stray html option end tag.
  • Loading branch information
billz committed Aug 16, 2018
2 parents a02b525 + 5988dab commit 1ac167b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1ac167b

Please sign in to comment.