summaryrefslogtreecommitdiffstats
path: root/forum/views
diff options
context:
space:
mode:
Diffstat (limited to 'forum/views')
-rwxr-xr-xforum/views/commands.py2
-rwxr-xr-xforum/views/meta.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/forum/views/commands.py b/forum/views/commands.py
index ca6569e2..b312242d 100755
--- a/forum/views/commands.py
+++ b/forum/views/commands.py
@@ -317,7 +317,7 @@ def reopen(request, id):#re-open question
'question' : question,
}, context_instance=RequestContext(request))
-#osqa-user communication system
+#askbot-user communication system
def read_message(request):#marks message a read
if request.method == "POST":
if request.POST['formdata'] == 'required':
diff --git a/forum/views/meta.py b/forum/views/meta.py
index 6417e8f5..40f3d394 100755
--- a/forum/views/meta.py
+++ b/forum/views/meta.py
@@ -51,7 +51,7 @@ def logout(request):#refactor/change behavior?
#I guess rationale was to tell the user that s/he may be still logged in
#through their external login sytem and we'd want to remind them about it
#however it might be a little annoying
-#why not just show a message: you are logged out of osqa, but
+#why not just show a message: you are logged out of askbot, but
#if you really want to log out -> go to your openid provider
return render_to_response('logout.html', {
'next' : get_next_url(request),