From: rick Date: Wed, 12 May 2010 22:45:54 +0000 (+0000) Subject: Make the new "show welcome box" setting default to true X-Git-Tag: live~883 X-Git-Url: https://git.openstreetmap.org/osqa.git/commitdiff_plain/f12629b43eb5b0f87e058f104af6720be5b59320 Make the new "show welcome box" setting default to true git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@246 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/settings/basic.py b/forum/settings/basic.py index 25afd95..844947c 100644 --- a/forum/settings/basic.py +++ b/forum/settings/basic.py @@ -49,7 +49,7 @@ label = _("Feedback site url"), help_text = _("If you have a specific place to get feedback from your users, use this field and the fedback link on the footer will point there."), required=False)) -SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', False, BASIC_SET, dict( +SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', True, BASIC_SET, dict( label = _("Show the Welcome box"), help_text = _("Do you want to show the welcome box when a user first visits your site."), required=False))