0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-12-22 08:21:52 +00:00

Modify demo so that outputted source in text area is SGML valid.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@314 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2006-08-21 00:48:43 +00:00
parent f8839d56a0
commit 6af60425b8

View File

@ -58,8 +58,10 @@ if (isset($_GET['profile']) || isset($_GET['XDEBUG_PROFILE'])) {
<legend>HTML</legend>
<textarea name="html" cols="60" rows="15"><?php
if (isset($html)) echo htmlspecialchars($html, ENT_COMPAT, 'UTF-8');
if (isset($html)) {
echo htmlspecialchars(
HTMLPurifier_Lexer::cleanUTF8($html), ENT_COMPAT, 'UTF-8');
}
?></textarea>
<div>
<input type="submit" value="Submit" name="submit" class="button" />