aboutsummaryrefslogtreecommitdiffstats
path: root/english/Bugs/hashbug_redirect.js
blob: 66f59531b10dd7ec7c51c36fee26c96b4cd2f5aa (plain) (blame)
1
2
3
4
5
// If the page's hash seems to be a bug number redirect to
// https://bugs.debian.org/<hash>
if (document.location.hash.match(/^#\d+$/)) {
    document.location = "https://bugs.debian.org/" + document.location.hash.substring(1);
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy