diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-10-18 15:16:42 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-10-18 15:16:42 -0700 |
commit | 82e4493f4b376a79867c55ab7daa4cbbfedf1bda (patch) | |
tree | 884189d66a9b33b51d5de4b0eee9b220cb2010fc /src/com/p4square/grow/frontend/GrowFrontend.java | |
parent | a0d33fcdfe454c6fdac236ce7fc665536ba580d9 (diff) |
Fixing config issues when not running in tomcat
Diffstat (limited to 'src/com/p4square/grow/frontend/GrowFrontend.java')
-rw-r--r-- | src/com/p4square/grow/frontend/GrowFrontend.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/p4square/grow/frontend/GrowFrontend.java b/src/com/p4square/grow/frontend/GrowFrontend.java index ecb2475..327554e 100644 --- a/src/com/p4square/grow/frontend/GrowFrontend.java +++ b/src/com/p4square/grow/frontend/GrowFrontend.java @@ -67,7 +67,7 @@ public class GrowFrontend extends FMFacade { public synchronized void start() throws Exception { Template errorTemplate = getTemplate("templates/error.ftl"); if (errorTemplate != null) { - ErrorPage.setTemplate(errorTemplate); + ErrorPage.setTemplate(errorTemplate, FreeMarkerPageResource.baseRootObject(getContext())); } super.start(); |