aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-07-23 13:35:19 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-07-23 13:35:19 +0200
commita818ff2000c721c6f078c206c3f5214c558a5546 (patch)
tree2fdc9cb35e77031c12861cbe1c9a66d6ade6f332
parent6a4bbf0fe5afe1f0783c685fda1478f9c33a90b2 (diff)
downloadwallabag-a818ff2000c721c6f078c206c3f5214c558a5546.tar.gz
wallabag-a818ff2000c721c6f078c206c3f5214c558a5546.tar.zst
wallabag-a818ff2000c721c6f078c206c3f5214c558a5546.zip
removed permissions test on htmlpurifier
-rw-r--r--check_setup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_setup.php b/check_setup.php
index c86b17fa..eee5d24a 100644
--- a/check_setup.php
+++ b/check_setup.php
@@ -12,7 +12,7 @@ if (version_compare(PHP_VERSION, '5.4.0', '<')) {
12 } 12 }
13} 13}
14 14
15$writableFolders = array('cache', 'db', 'inc/3rdparty/htmlpurifier/HTMLPurifier/DefinitionCache/Serializer'); 15$writableFolders = array('cache', 'db');
16foreach ($writableFolders as $folder) { 16foreach ($writableFolders as $folder) {
17 if (! is_writable($folder)) { 17 if (! is_writable($folder)) {
18 die('The directory "' . $folder . '" must be writeable by your web server user'); 18 die('The directory "' . $folder . '" must be writeable by your web server user');