summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoahY <yuttadhammo@yahoo.com>2011-07-25 21:51:05 +0530
committerNoahY <yuttadhammo@yahoo.com>2011-07-25 21:51:05 +0530
commitbc835b6d237517fe186be46754d4e71f32eaf594 (patch)
tree5824d4ddcb1bab5aace09fd1729782ccb69cc839
parent7593e428a2207a90b603a20eeee08bc77bf8c3ee (diff)
downloadaskbot-bc835b6d237517fe186be46754d4e71f32eaf594.tar.gz
askbot-bc835b6d237517fe186be46754d4e71f32eaf594.tar.bz2
askbot-bc835b6d237517fe186be46754d4e71f32eaf594.zip
fixed gravatar setting
-rw-r--r--askbot/conf/user_settings.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/askbot/conf/user_settings.py b/askbot/conf/user_settings.py
index 3177a60a..8644257b 100644
--- a/askbot/conf/user_settings.py
+++ b/askbot/conf/user_settings.py
@@ -4,6 +4,7 @@ User policy settings
from askbot.conf.settings_wrapper import settings
from askbot.deps import livesettings
from django.utils.translation import ugettext as _
+from askbot import const
USER_SETTINGS = livesettings.ConfigurationGroup(
'USER_SETTINGS',
@@ -52,8 +53,8 @@ settings.register(
USER_SETTINGS,
'DEFAULT_GRAVATAR',
default='identicon',
- choices=const.NOTIFICATION_DELIVERY_SCHEDULE_CHOICES,
- description=_('Default Gravatar icon type')
+ choices=const.USER_DEFAULT_GRAVATAR_CHOICES,
+ description=_('Default Gravatar icon type'),
help_text=_(
'This option allows you to set the default avatar type for email addresses without associated gravatar images. For more information, please visit <a href="http://en.gravatar.com/site/implement/images/">this page</a>.'
)