##// END OF EJS Templates
removed encodeURIComponent, on url generation....
marcink -
r3992:c1a1f05e default
parent child Browse files
Show More
@@ -255,7 +255,7 b''
255 var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value;
255 var selected_branch = e.currentTarget.options[e.currentTarget.selectedIndex].value;
256 if(selected_branch != ''){
256 if(selected_branch != ''){
257 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}',
257 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}',
258 'branch':encodeURIComponent(selected_branch)});
258 'branch':selected_branch});
259 }else{
259 }else{
260 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}'});
260 window.location = pyroutes.url('changelog_home', {'repo_name': '${c.repo_name}'});
261 }
261 }
General Comments 0
You need to be logged in to leave comments. Login now