Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx
edx-platform
Commits
2cdddef9
Commit
2cdddef9
authored
Aug 23, 2013
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless critical log, remove unnecessary course_id escaping.
parent
8ee9a967
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
2 deletions
+1
-2
lms/djangoapps/verify_student/views.py
+0
-1
lms/templates/verify_student/photo_verification.html
+1
-1
No files found.
lms/djangoapps/verify_student/views.py
View file @
2cdddef9
...
...
@@ -58,7 +58,6 @@ def create_order(request):
attempt
.
save
()
course_id
=
request
.
POST
[
'course_id'
]
log
.
critical
(
course_id
)
# I know, we should check this is valid. All kinds of stuff missing here
# enrollment = CourseEnrollment.create_enrollment(request.user, course_id)
...
...
lms/templates/verify_student/photo_verification.html
View file @
2cdddef9
...
...
@@ -34,7 +34,7 @@
var
xhr
=
$
.
post
(
"create_order"
,
{
"course_id"
:
"${course_id
|u
}"
"course_id"
:
"${course_id}"
},
function
(
data
)
{
for
(
prop
in
data
)
{
...
...
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