From e2e8c35c2c7617b1a7672d94b6300247f6c79658 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Mon, 12 Dec 2016 09:26:09 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#110 --- wire/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wire/config.php b/wire/config.php index 21b0f97b..d15eeda7 100644 --- a/wire/config.php +++ b/wire/config.php @@ -601,8 +601,8 @@ $config->fileCompilerOptions = array( 'siteOnly' => false, // only allow compilation of files in /site/ directory 'showNotices' => true, // show notices about compiled files to superuser when logged in 'logNotices' => true, // log notices about compiled files and maintenance to file-compiler.txt log. - 'chmodFile' => $config->chmodFile, // mode to use for created files, i.e. "0644" - 'chmodDir' => $config->chmodDir, // mode to use for created directories, i.e. "0755" + 'chmodFile' => '', // mode to use for created files, i.e. "0644" + 'chmodDir' => '', // mode to use for created directories, i.e. "0755" 'exclusions' => array(), // exclude filenames or paths that start with any of these 'extensions' => array('php', 'module', 'inc'), // file extensions we compile 'cachePath' => $config->paths->cache . 'FileCompiler/', // path where compiled files are stored