summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-16 18:35:16 +0400
committerAndrew Dolgov <[email protected]>2011-04-16 18:35:16 +0400
commit50aa64b3c4b1ef5a9b90e3f1a09b8e4c92140d16 (patch)
tree81ed488bcf6b664fd218fc6156e491ccae936ae3 /functions.php
parentca06ed7d36315922f5bc690e9fa456ecfe2faa9e (diff)
squash deprecated warning of htmlpurifier serializer path
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 4abca26c0..b99744373 100644
--- a/functions.php
+++ b/functions.php
@@ -120,7 +120,7 @@
@$config->set('HTML', 'Allowed', $allowed);
$config->set('Output.FlashCompat', true);
$config->set('Attr.EnableID', true);
- $config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier");
+ @$config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier");
$purifier = new HTMLPurifier($config);