This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch db/8607 in repository https://gitbox.apache.org/repos/asf/allura.git
commit c8cbac512d5e2b626579f315e27a88eaf268eb90 Author: Dave Brondsema <[email protected]> AuthorDate: Fri May 29 11:13:31 2026 -0400 fixup! [#8607] escape html in a few places --- Allura/allura/templates/site_admin_new_projects.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Allura/allura/templates/site_admin_new_projects.html b/Allura/allura/templates/site_admin_new_projects.html index 1b954936b..a900c6088 100644 --- a/Allura/allura/templates/site_admin_new_projects.html +++ b/Allura/allura/templates/site_admin_new_projects.html @@ -170,7 +170,7 @@ flash(response.message, 'success'); form.remove(); var td = el.closest('tr').find('td:first'); - td.html('<p><strong>Notes:</strong>' + html_escape(textarea.val()) + '</p>'); + td.html('<p><strong>Notes:</strong>' + escape_html(textarea.val()) + '</p>'); el.remove(); }).fail(function (response){ flash(response.message, 'error');
