summaryrefslogtreecommitdiffstats
path: root/askbot/const
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-30 11:37:26 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-30 11:37:26 -0400
commit226e869cc2c85495bd29e7b8fb74a71e830e4003 (patch)
treeea41706504f6ac0a7be0add931513355c15714b0 /askbot/const
parenta34d5ef02c4d0f6403aa4c6238b9ea0f36290f13 (diff)
downloadaskbot-226e869cc2c85495bd29e7b8fb74a71e830e4003.tar.gz
askbot-226e869cc2c85495bd29e7b8fb74a71e830e4003.tar.bz2
askbot-226e869cc2c85495bd29e7b8fb74a71e830e4003.zip
fixed mailto link and replaced quote_plus with quote fo encode content and subject for the mailto links
Diffstat (limited to 'askbot/const')
-rw-r--r--askbot/const/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/const/__init__.py b/askbot/const/__init__.py
index e711de92..0a36879e 100644
--- a/askbot/const/__init__.py
+++ b/askbot/const/__init__.py
@@ -58,7 +58,7 @@ SIMPLE_REPLY_SEPARATOR_TEMPLATE = '==== %s -=-=='
REPLY_SEPARATOR_TEMPLATE = '==== %(user_action)s %(instruction)s -=-=='
REPLY_WITH_COMMENT_TEMPLATE = _(
'Note: to reply with a comment, '
- 'please use <a href="mailto://%(addr)s">this link</a>'
+ 'please use <a href="mailto:%(addr)s">this link</a>'
)
REPLY_SEPARATOR_REGEX = re.compile(r'==== .* -=-==', re.MULTILINE|re.DOTALL)