From a8ce0572cd5dfe373f7e55fe8fb26be0e83d4729 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Aug 21 2018 08:49:50 +0000 Subject: fix invalid ssh url in clone dropdown the macro that was printing the ssh url uses unnamed parameters, so it was using the username as the prefix. sending an empty string prefix fixes this issue. Fixes #3532 --- diff --git a/pagure/templates/repo_master.html b/pagure/templates/repo_master.html index 20f34c6..f465bfe 100644 --- a/pagure/templates/repo_master.html +++ b/pagure/templates/repo_master.html @@ -171,7 +171,7 @@
Source Code
{% if g.authenticated and g.repo_committer %} - {{ print_ssh_url(repo, g.fas_user.username) }} + {{ print_ssh_url(repo, "", g.fas_user.username) }} {% endif %}