diff options
author | Evan Prodromou <evan@status.net> | 2010-02-20 11:35:01 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-20 11:35:01 -0500 |
commit | 81ea0f81173030c73cfc8dd46946d126d3d41622 (patch) | |
tree | 5df2ddd2d59086b81ba471ccea16629571c791bf /extlib/HTMLPurifier/HTMLPurifier.path.php | |
parent | ed45df045f661e9c3b85e0657986c99c320914f0 (diff) |
Add HTMLPurifier to extlib
HTMLPurifier defangs arbitrary submitted HTML. We're using it in the
OStatus plugin, but it may be valuable for other parts of the codebase
(I think OEmbed might benefit, for example).
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 |