From 87296931756d8953635ae86d45809235783bdfc7 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 28 Jun 2010 12:24:02 +0200 Subject: [PATCH] deadfoxjunction: Fix the logo. The logo url used to use the theme_default variable, but that one is no longer defined in the deadfoxjunction config (but in FarmConfig) and no longer relevant. Just hardcode the deadfoxjunction theme name for now. --- conf/deadfoxjunction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/deadfoxjunction.py b/conf/deadfoxjunction.py index e91d028..b7a7084 100644 --- a/conf/deadfoxjunction.py +++ b/conf/deadfoxjunction.py @@ -33,6 +33,6 @@ class Config(FarmConfig): # Set cookies on /, so they work on /wipi and /Site alike. cookie_path = '/' - logo_string = 'Dead Fox Junction' % (FarmConfig.url_prefix_static, theme_default) + logo_string = 'Dead Fox Junction' % (FarmConfig.url_prefix_static, 'deadfoxjunction') # vim: set ts=8 sts=4 sw=4 expandtab: -- 2.30.2