Commit 368a594c authored by Michal Čihař's avatar Michal Čihař

Default to grey cartoon instead of gravatar logo

parent 64586d30
...@@ -35,7 +35,13 @@ GRAVATAR_URL_PREFIX = getattr( ...@@ -35,7 +35,13 @@ GRAVATAR_URL_PREFIX = getattr(
'GRAVATAR_URL_PREFIX', 'GRAVATAR_URL_PREFIX',
'https://secure.gravatar.com/' 'https://secure.gravatar.com/'
) )
GRAVATAR_DEFAULT_IMAGE = getattr(settings, "GRAVATAR_DEFAULT_IMAGE", "") # See http://cs.gravatar.com/site/implement/images/
# for available choices
GRAVATAR_DEFAULT_IMAGE = getattr(
settings,
'GRAVATAR_DEFAULT_IMAGE',
'mm'
)
PLURAL_SEPARATOR = '\x00\x00' PLURAL_SEPARATOR = '\x00\x00'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment