deadfoxjunction: Fix the logo.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 28 Jun 2010 10:24:02 +0000 (12:24 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 28 Jun 2010 10:24:02 +0000 (12:24 +0200)
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

index e91d028fae67db0314bde6e18fe72172af1c5a99..b7a7084c3a3cd80f768371cf46f702abfe2ba603 100644 (file)
@@ -33,6 +33,6 @@ class Config(FarmConfig):
     # Set cookies on /, so they work on /wipi and /Site alike.
     cookie_path = '/'
     
-    logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, theme_default)
+    logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, 'deadfoxjunction')
 
 # vim: set ts=8 sts=4 sw=4 expandtab: