summaryrefslogtreecommitdiff
path: root/gstudio/views/pageadd.py
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/views/pageadd.py')
-rw-r--r--gstudio/views/pageadd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gstudio/views/pageadd.py b/gstudio/views/pageadd.py
index 4f63ead..d51017c 100644
--- a/gstudio/views/pageadd.py
+++ b/gstudio/views/pageadd.py
@@ -29,9 +29,9 @@ def pageadd(request):
# if not request.POST.get('org1', ''):
# errors.append('Enter a page.')
if not errors:
- title=request.POST['subject']
+ title=unicode(request.POST['subject'])
# content=request.POST['page']
- content_org=request.POST['org1']
+ content_org=unicode(request.POST['org1'])
idusr=request.POST['idusr']
pageId = create_wikipage(title,int(idusr),content_org)
if pageId :