diff options
Diffstat (limited to 'extlib/HTMLPurifier/HTMLPurifier.path.php')
-rw-r--r-- | extlib/HTMLPurifier/HTMLPurifier.path.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extlib/HTMLPurifier/HTMLPurifier.path.php b/extlib/HTMLPurifier/HTMLPurifier.path.php new file mode 100644 index 000000000..39b1b6531 --- /dev/null +++ b/extlib/HTMLPurifier/HTMLPurifier.path.php @@ -0,0 +1,11 @@ +<?php + +/** + * @file + * Convenience stub file that adds HTML Purifier's library file to the path + * without any other side-effects. + */ + +set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() ); + +// vim: et sw=4 sts=4 |