Skip to content
Permalink
Browse files Browse the repository at this point in the history
fixes #575, sanitize user input before display on die()
  • Loading branch information
plegall committed Dec 24, 2016
1 parent b5c036e commit 7df3830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/plugin.php
Expand Up @@ -63,6 +63,6 @@
}
else
{
die('Missing file '.$filename);
die('Missing file '.htmlentities($filename));
}
?>

0 comments on commit 7df3830

Please sign in to comment.