mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
12b811d749
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
11 lines
302 B
PHP
11 lines
302 B
PHP
--TEST--
|
|
HTMLPurifier.auto.php loading test
|
|
--FILE--
|
|
<?php
|
|
require '../library/HTMLPurifier.auto.php';
|
|
require 'HTMLPurifier/PHPT/loading/_autoload.inc';
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
$purifier = new HTMLPurifier($config);
|
|
echo $purifier->purify('<b>Salsa!');
|
|
--EXPECT--
|
|
<b>Salsa!</b> |