diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-14 01:36:18 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-14 01:36:18 +0200 |
commit | f2d5af261b95310c2fb7d0565222c211998bff4f (patch) | |
tree | 08895bd9f38f0afbc549b2e70daaf78a28e1f9c2 /Bugzilla/Install | |
parent | 8cfb548a7897269668cc5879025546e4ae8ac500 (diff) | |
download | bugzilla-f2d5af261b95310c2fb7d0565222c211998bff4f.tar.gz bugzilla-f2d5af261b95310c2fb7d0565222c211998bff4f.tar.xz |
Bug 602418: Add "template_cache" to bz_locations(), a way of specifying that
cached templates should be stored somewhere else than the data directory.
r=LpSolit, a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 20bd021ef..6a265bffe 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -121,6 +121,7 @@ sub FILESYSTEM { my $extlib = bz_locations()->{'ext_libpath'}; my $skinsdir = bz_locations()->{'skinsdir'}; my $localconfig = bz_locations()->{'localconfig'}; + my $template_cache = bz_locations()->{'template_cache'}; # We want to set the permissions the same for all localconfig files # across all PROJECTs, so we do something special with $localconfig, @@ -189,7 +190,7 @@ sub FILESYSTEM { # the webserver. my %recurse_dirs = ( # Writeable directories - "$datadir/template" => { files => CGI_READ, + $template_cache => { files => CGI_READ, dirs => DIR_CGI_OVERWRITE }, $attachdir => { files => CGI_WRITE, dirs => DIR_CGI_WRITE }, |