Commit 15f620d3 by Greg Price

Merge pull request #1003 from edx/gprice/fix-user-profile-links

Fix a bug in links on forum user profile pages
parents d3dc9d27 6296e2dc
...@@ -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.
......
...@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment