summaryrefslogtreecommitdiffstats
path: root/askbot/conf
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-05 23:57:15 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-05 23:57:15 -0400
commitcf3605b7c0a86e799077f440e97645b22a69b8a0 (patch)
treef326e539e358a3f16d424d1d7a24f02968e8685e /askbot/conf
parentad61b074b6f03c9b4c9d7f3f0fd195705c7366f2 (diff)
downloadaskbot-cf3605b7c0a86e799077f440e97645b22a69b8a0.tar.gz
askbot-cf3605b7c0a86e799077f440e97645b22a69b8a0.tar.bz2
askbot-cf3605b7c0a86e799077f440e97645b22a69b8a0.zip
fixed a bug where twitter sharing button was shown, when twitter keys were not set up
Diffstat (limited to 'askbot/conf')
-rw-r--r--askbot/conf/social_sharing.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/askbot/conf/social_sharing.py b/askbot/conf/social_sharing.py
index e57dec28..392fa042 100644
--- a/askbot/conf/social_sharing.py
+++ b/askbot/conf/social_sharing.py
@@ -35,7 +35,12 @@ settings.register(
SOCIAL_SHARING,
'ENABLE_SHARING_TWITTER',
default=True,
- description=_('Check to enable sharing of questions on Twitter')
+ description=_('Check to enable sharing of questions on Twitter'),
+ help_text=_(
+ 'Important - to actually start sharing on twitter, '
+ 'it is required to set up Twitter consumer key and secret '
+ 'in the "keys to external services" section.'
+ )
)
)