ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
HTMLPurifier.func.php
Go to the documentation of this file.
1 <?php
2 
16 function HTMLPurifier($html, $config = null)
17 {
18  static $purifier = false;
19  if (!$purifier) {
20  $purifier = new HTMLPurifier();
21  }
22  return $purifier->purify($html, $config);
23 }
24 
25 // vim: et sw=4 sts=4