summaryrefslogtreecommitdiffstats
path: root/askbot/middleware
diff options
context:
space:
mode:
authorDejan Noveski <dr.mote@gmail.com>2011-11-29 21:06:39 +0100
committerDejan Noveski <dr.mote@gmail.com>2011-11-29 21:06:39 +0100
commit7f72266e080c2822f77ff1c5bbf54f14eb72e798 (patch)
treee59645990aed894b24d82c04f2ae1c721e9e3eec /askbot/middleware
parent8ba78c44971859b7ee3a45b4bbaac56e69705439 (diff)
downloadaskbot-7f72266e080c2822f77ff1c5bbf54f14eb72e798.tar.gz
askbot-7f72266e080c2822f77ff1c5bbf54f14eb72e798.tar.bz2
askbot-7f72266e080c2822f77ff1c5bbf54f14eb72e798.zip
Added widget_questions to PROTECTED URLS, removed a pdb line, changed 1 test to reflect data
Diffstat (limited to 'askbot/middleware')
-rw-r--r--askbot/middleware/forum_mode.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/askbot/middleware/forum_mode.py b/askbot/middleware/forum_mode.py
index 874b5559..8f14199b 100644
--- a/askbot/middleware/forum_mode.py
+++ b/askbot/middleware/forum_mode.py
@@ -19,7 +19,8 @@ PROTECTED_URLS = [
'faq',
'user_profile',
'answer_revisions',
- 'user_subscriptions']
+ 'user_subscriptions',
+ 'widget_questions']
class ForumModeMiddleware(object):