summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2017-10-23 19:41:30 -0400
committerEli Schwartz <eschwartz@archlinux.org>2017-10-23 20:00:45 -0400
commit6ffa5c4957812f3ee584205b6d11ce87885f9e6c (patch)
treeee9e63d8db9428c07836e64f723df2d4c82e8a6b
parentb788beeeb0788c3e6a3a92b359453c8d45a95d01 (diff)
downloadarchweb-6ffa5c4957812f3ee584205b6d11ce87885f9e6c.tar.gz
archweb-6ffa5c4957812f3ee584205b6d11ce87885f9e6c.zip
package details: remove category from bugtracker links
This completely screws up searching for bugs, as you can easily miss any bugs filed to the testing package, and will *always* miss the ones that have been moved to "Upstream Bugs". There is no purpose in restricting the view of bugs filed against a specific package, to some arbitrary subcategory of "why" the bug was filed; all it accomplishes is causing unknowing users to file duplicate bug reports.
-rw-r--r--main/templatetags/details_link.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/templatetags/details_link.py b/main/templatetags/details_link.py
index 07fbe108..c9c0521a 100644
--- a/main/templatetags/details_link.py
+++ b/main/templatetags/details_link.py
@@ -32,7 +32,6 @@ def bugs_list(package):
url = "https://bugs.archlinux.org/"
data = {
'project': package.repo.bugs_project,
- 'cat[]': package.repo.bugs_category,
'string': package.pkgname,
}
return link_encode(url, data)