Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-wiki
Commits
85602fe3
Commit
85602fe3
authored
Mar 26, 2013
by
benjaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #125 - missing redirect call
parent
807611b9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
wiki/views/article.py
+1
-1
No files found.
wiki/views/article.py
View file @
85602fe3
...
@@ -473,7 +473,7 @@ class SearchView(ListView):
...
@@ -473,7 +473,7 @@ class SearchView(ListView):
def
dispatch
(
self
,
request
,
*
args
,
**
kwargs
):
def
dispatch
(
self
,
request
,
*
args
,
**
kwargs
):
# Do not allow anonymous users to search if they cannot read content
# Do not allow anonymous users to search if they cannot read content
if
request
.
user
.
is_anonymous
and
not
settings
.
ANONYMOUS
:
if
request
.
user
.
is_anonymous
and
not
settings
.
ANONYMOUS
:
return
(
settings
.
LOGIN_URL
)
return
redirect
(
settings
.
LOGIN_URL
)
self
.
search_form
=
forms
.
SearchForm
(
request
.
GET
)
self
.
search_form
=
forms
.
SearchForm
(
request
.
GET
)
if
self
.
search_form
.
is_valid
():
if
self
.
search_form
.
is_valid
():
self
.
query
=
self
.
search_form
.
cleaned_data
[
'query'
]
self
.
query
=
self
.
search_form
.
cleaned_data
[
'query'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment