Ticket #6100: 6100.diff
File 6100.diff, 596 bytes (added by , 17 years ago) |
---|
-
django/contrib/admin/media/js/admin/RelatedObjectLookups.js
3 3 4 4 function html_unescape(text) { 5 5 // Unescape a string that was escaped using django.utils.html.escape. 6 text = "" + text; // coerce from integer, probably 6 7 text = text.replace(/</g, '<'); 7 8 text = text.replace(/>/g, '>'); 8 9 text = text.replace(/"/g, '"');