From cf8ff91f27ccd88b84e016e1fbfd7762692ce25b Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 15 Oct 2008 12:34:15 -0700 Subject: [PATCH] A few product pages (such as the tour) had an incorrect page title. --- view/Product_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/Product_page.py b/view/Product_page.py index 6ef05b2..b6082fc 100644 --- a/view/Product_page.py +++ b/view/Product_page.py @@ -7,7 +7,7 @@ class Product_page( Page ): def __init__( self, user, first_notebook, login_url, logout_url, note_title, *nodes ): Page.__init__( self, - None, # use the default title + ( note_title != "home" ) and note_title or None, # use the default title for the "home" page Link( rel = u"stylesheet", type = u"text/css", href = u"/static/css/header.css" ), Link( rel = u"stylesheet", type = u"text/css", href = u"/static/css/product.css" ), Meta( name = u"description", content = u"Luminotes is a WYSIWYG personal wiki notebook for organizing your notes and ideas." ),