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
15f620d3
Commit
15f620d3
authored
Sep 17, 2013
by
Greg Price
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1003 from edx/gprice/fix-user-profile-links
Fix a bug in links on forum user profile pages
parents
d3dc9d27
6296e2dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
CHANGELOG.rst
+3
-0
lms/templates/discussion/user_profile.html
+1
-1
No files found.
CHANGELOG.rst
View file @
15f620d3
...
@@ -5,6 +5,9 @@ These are notable changes in edx-platform. This is a rolling list of changes,
...
@@ -5,6 +5,9 @@ These are notable changes in edx-platform. This is a rolling list of changes,
in roughly chronological order, most recent first. Add your entries at or near
in roughly chronological order, most recent first. Add your entries at or near
the top. Include a label indicating the component affected.
the top. Include a label indicating the component affected.
LMS: Fixed a bug that caused links from forum user profile pages to
threads to lead to 404s if the course id contained a '-' character.
Common: Added configurable backends for tracking events. Tracking events using
Common: Added configurable backends for tracking events. Tracking events using
the python logging module is the default backend. Support for MongoDB and a
the python logging module is the default backend. Support for MongoDB and a
Django database is also available.
Django database is also available.
...
...
lms/templates/discussion/user_profile.html
View file @
15f620d3
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
</nav>
</nav>
</section>
</section>
<section
class=
"course-content container discussion-user-threads"
data-user-id=
"${django_user.id |
escapejs}"
data-course-id=
"${course.id | escapejs
}"
data-threads=
"${threads}"
data-user-info=
"${user_info}"
>
<section
class=
"course-content container discussion-user-threads"
data-user-id=
"${django_user.id |
h}"
data-course-id=
"${course.id | h
}"
data-threads=
"${threads}"
data-user-info=
"${user_info}"
>
<h2>
${_("Active Threads")}
</h2>
<h2>
${_("Active Threads")}
</h2>
</section>
</section>
</div>
</div>
...
...
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