summaryrefslogtreecommitdiffstats
path: root/askbot/views/commands.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-28 18:03:13 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-28 18:03:13 -0300
commit6e4f4482853fd20f8f8301e96174da77c528e415 (patch)
tree5b1b297ad4d078ab4edd04487606bbd8c2307862 /askbot/views/commands.py
parent980989b786c77ef2a7a23e23545c402e1b072591 (diff)
downloadaskbot-6e4f4482853fd20f8f8301e96174da77c528e415.tar.gz
askbot-6e4f4482853fd20f8f8301e96174da77c528e415.tar.bz2
askbot-6e4f4482853fd20f8f8301e96174da77c528e415.zip
undone the first implementation of limiting the link insertion
Diffstat (limited to 'askbot/views/commands.py')
-rw-r--r--askbot/views/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/views/commands.py b/askbot/views/commands.py
index c072f7b8..698bf2db 100644
--- a/askbot/views/commands.py
+++ b/askbot/views/commands.py
@@ -1348,7 +1348,7 @@ def get_editor(request):
if 'config' not in request.GET:
return HttpResponseForbidden()
config = simplejson.loads(request.GET['config'])
- form = forms.EditorForm(editor_attrs=config, user=request.user)
+ form = forms.EditorForm(editor_attrs=config)
editor_html = render_text_into_skin(
'{{ form.media }} {{ form.editor }}',
{'form': form},