You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by ke...@apache.org on 2017/09/05 18:08:57 UTC

allura git commit: This url is now encoded already, so double encoding it can cause problems

Repository: allura
Updated Branches:
  refs/heads/master 1919a8211 -> d63b6fad4


This url is now encoded already, so double encoding it can cause problems


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/d63b6fad
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/d63b6fad
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/d63b6fad

Branch: refs/heads/master
Commit: d63b6fad47b0c1451b9cba5ed6a0695d5d654785
Parents: 1919a82
Author: Dave Brondsema <da...@brondsema.net>
Authored: Fri Sep 1 12:55:57 2017 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Fri Sep 1 12:55:57 2017 -0400

----------------------------------------------------------------------
 Allura/allura/templates/repo/commit.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/d63b6fad/Allura/allura/templates/repo/commit.html
----------------------------------------------------------------------
diff --git a/Allura/allura/templates/repo/commit.html b/Allura/allura/templates/repo/commit.html
index 54f27a7..fea7979 100644
--- a/Allura/allura/templates/repo/commit.html
+++ b/Allura/allura/templates/repo/commit.html
@@ -55,7 +55,7 @@ Commit <a href="{{commit.url()}}">{{commit.shorthand_id()}}</a> {{commit_labels(
     }
 
     function ld(diff, callback) {
-      $(diff.selector).load(encodeURI(diff.url), callback);
+      $(diff.selector).load(diff.url, callback);
     }
 
     function load_diff() {