Skip to content

Commit

Permalink
turn whatever gets output into html escaped html so that nothing gets…
Browse files Browse the repository at this point in the history
… revealed
  • Loading branch information
Isaac Connor committed Jan 28, 2017
1 parent b5e9957 commit 41dab07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/includes/logger.php
Expand Up @@ -528,7 +528,7 @@ function Error( $string )
function Fatal( $string )
{
Logger::fetch()->logPrint( Logger::FATAL, $string );
die( $string );
die( htmlentities($string) );
}

function Panic( $string )
Expand Down

0 comments on commit 41dab07

Please sign in to comment.