diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-06-29 00:21:08 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-06-29 00:21:08 +0000 |
| commit | a119130545e328a5bd6ae311a0decdc82323530c (patch) | |
| tree | 27ee643de36bf7616bfcdb4b0db50f91e5abac85 /install_checks.php | |
| parent | 2894e35afd31026272e50ab3c8612d6dd6a4bf79 (diff) | |
| download | install-a119130545e328a5bd6ae311a0decdc82323530c.tar.gz install-a119130545e328a5bd6ae311a0decdc82323530c.tar.bz2 install-a119130545e328a5bd6ae311a0decdc82323530c.zip | |
Update to use HTMLPurifier installed via PEAR and to use features of the latest version available via the PEAR installer.
Diffstat (limited to 'install_checks.php')
| -rw-r--r-- | install_checks.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install_checks.php b/install_checks.php index 5ba8d5c..16ba5b4 100644 --- a/install_checks.php +++ b/install_checks.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.22 2007/06/24 06:51:48 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.23 2007/06/29 00:21:08 nickpalmer Exp $ * @package install * @subpackage functions * @author xing @@ -211,6 +211,10 @@ function check_settings() { 'path' => 'Image/GraphViz.php', 'note' => 'Pear::Image_Graphviz makes the {graphviz} plugin available. With it you can draw maps of how your wiki pages are linked to each other. This can be used for informational purposes or a site-map.<br /><em>It also requires the application graphviz to be installed as well.</em>', ), + 'HTMLPurifier' => array( + 'path' => 'HTMLPurifier.php', + 'note' => 'HTMLPurifier is an advance system for defending against Cross Site Scripting (XSS) attacks and ensuring that all code on your site is standards compliant. It is highly recommended if you are going to allow HTML submission to your site. It is not required if you are only going to use a wiki format like tikiwiki or bbcode. Install with the following commands: pear channel-discover htmlpurifier.org; pear install hp/HTMLPurifier; and enable it in the liberty plugins administration. See <a href="http://htmlpurifier.org">http://htmlpurifier.org</a> for more information.', + ), ); foreach( $pears as $pear => $info ) { |
