Skip to content

Commit

Permalink
Fix a possible XSS
Browse files Browse the repository at this point in the history
  • Loading branch information
PhenX committed Mar 19, 2014
1 parent 378df0a commit d13682b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/make_subset.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1><?php echo $name; ?></h1>
<h1><?php echo htmlentities($name); ?></h1>
<form name="make-subset" method="post" action="?fontfile=<?php echo $fontfile; ?>">
<label>
Insert the text from which you want the glyphs in the subsetted font: <br />
Expand Down

0 comments on commit d13682b

Please sign in to comment.