mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
15 lines
435 B
Plaintext
15 lines
435 B
Plaintext
|
--TEST--
|
||
|
HTMLPurifier.path.php, HTMLPurifier.includes.php and HTMLPurifier.autoload.php loading test
|
||
|
--FILE--
|
||
|
<?php
|
||
|
require '../library/HTMLPurifier.path.php';
|
||
|
require 'HTMLPurifier.includes.php';
|
||
|
require 'HTMLPurifier.autoload.php';
|
||
|
require 'HTMLPurifier/PHPT/loading/_autoload.inc';
|
||
|
$config = HTMLPurifier_Config::createDefault();
|
||
|
$purifier = new HTMLPurifier($config);
|
||
|
echo $purifier->purify('<b>Salsa!');
|
||
|
|
||
|
--EXPECT--
|
||
|
<b>Salsa!</b>
|