Ticket #6104: RelatedObjectLookups.js.patch
File RelatedObjectLookups.js.patch, 607 bytes (added by , 17 years ago) |
---|
-
newforms-admin/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; 6 7 text = text.replace(/</g, '<'); 7 8 text = text.replace(/>/g, '>'); 8 9 text = text.replace(/"/g, '"');