diff -r 0012d997b992 -r dc1eedd06766 web/views/basecomponents.py
--- a/web/views/basecomponents.py Fri Jun 19 08:23:45 2009 +0200
+++ b/web/views/basecomponents.py Fri Jun 19 08:27:41 2009 +0200
@@ -148,8 +148,10 @@
site_wide = True
def call(self):
- self.w(u'%s' % (
- self.req.base_url(), self.req.property_value('ui.site-title')))
+ title = self.req.property_value('ui.site-title')
+ if title:
+ self.w(u'%s' % (
+ self.req.base_url(), title))
class SeeAlsoVComponent(component.RelatedObjectsVComponent):