Commit 27c0104b by Calen Pennington

Merge pull request #466 from MITx/feature/victor/html-escape-errors

html escape errors
parents ef2bfac3 868b076e
...@@ -54,8 +54,8 @@ ...@@ -54,8 +54,8 @@
<div id="course-errors"> <div id="course-errors">
<ul> <ul>
% for (msg, err) in course_errors: % for (msg, err) in course_errors:
<li>${msg} <li>${msg | h}
<ul><li><pre>${err}</pre></li></ul> <ul><li><pre>${err | h}</pre></li></ul>
</li> </li>
% endfor % endfor
</ul> </ul>
......
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