0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-19 10:45:18 +00:00

[2.0.1] Fix unescaped print_r that handles user input

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1231 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2007-06-25 15:20:45 +00:00
parent 0e9904a9ba
commit 96b571d236

View File

@ -70,7 +70,7 @@ echo $printer->render($config);
</form>
<pre>
<?php
print_r($config->getAll());
echo htmlspecialchars(print_r($config->getAll(), true));
?>
</pre>
</body>