From d89ebb8d82ef5b073710dd24781bc1ffd602c454 Mon Sep 17 00:00:00 2001 From: Andrii V Date: Thu, 10 Jul 2025 13:31:05 +0200 Subject: [PATCH] fix: potential fix for nofollow repo urls --- rhodecode/templates/summary/summary.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhodecode/templates/summary/summary.mako b/rhodecode/templates/summary/summary.mako index 64876f18..bb4a8afc 100644 --- a/rhodecode/templates/summary/summary.mako +++ b/rhodecode/templates/summary/summary.mako @@ -101,7 +101,7 @@ $(document).ready(function(){ // set new label $(this).html(ico + ' {0}{1}'.format(escapeHtml(e.added.text), ext)); // set new url to button, - $(this).attr('href', href) + $(this).attr('href', href).attr('rel', 'nofollow') }); });