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