summaryrefslogtreecommitdiff
path: root/include/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-18 11:00:44 +0400
committerAndrew Dolgov <[email protected]>2013-03-18 11:00:44 +0400
commitc670a80ddd9b03bd4ea6d940a9ed682fd26248d7 (patch)
tree69b562eb609b4a7ef3ed95138c9f5b6d91896a52 /include/sanity_check.php
parent107997e6cb04f5daddb11e631b9866c385f2ca7d (diff)
cache minified js files
Diffstat (limited to 'include/sanity_check.php')
-rw-r--r--include/sanity_check.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sanity_check.php b/include/sanity_check.php
index fcf548705..4925486a3 100644
--- a/include/sanity_check.php
+++ b/include/sanity_check.php
@@ -36,6 +36,10 @@
array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
}
+ if (!is_writable(CACHE_DIR . "/js")) {
+ array_push($errors, "Javascript cache is not writable (chmod -R 777 ".CACHE_DIR."/js)");
+ }
+
if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
array_push($errors,
"Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");