Skip to content
Permalink
Browse files Browse the repository at this point in the history
Encode FreeRADIUS config file display output. Fixes #9866
  • Loading branch information
jim-p committed Oct 31, 2019
1 parent 01a1cf4 commit 30b22b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/pfSense-pkg-freeradius3/Makefile
Expand Up @@ -2,7 +2,7 @@

PORTNAME= pfSense-pkg-freeradius3
PORTVERSION= 0.15.7
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= net
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
Expand Up @@ -40,7 +40,7 @@ function get_file($file) {

if ($files[$file] != "" && file_exists($files[$file])) {
print '<pre>';
print $files[$file] . "\n" . file_get_contents($files[$file]);
print $files[$file] . "\n" . htmlspecialchars(file_get_contents($files[$file]));
print '</pre>';
}
}
Expand Down

0 comments on commit 30b22b6

Please sign in to comment.