Skip to content

Commit

Permalink
bug fix e3
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Jul 28, 2022
1 parent 2032434 commit 74d2103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/super/manage_site_files.php
Expand Up @@ -537,7 +537,7 @@ function msfFileChanged() {
$('#add-manually').on('click', function () {
var new_type = $("#add-manually-input").val();
if(new_type.length < 1)return;
$('#white-list').prepend("<option value="+new_type+">"+new_type+"</option>")
$('#white-list').prepend("<option value='" + jsAttr(new_type) + "'>" + jsText(new_type) + "</option>")
})

$('#submit-whitelist').on('click', function () {
Expand Down

0 comments on commit 74d2103

Please sign in to comment.