diff options
author | Rob Stradling <rob@comodo.com> | 2017-05-05 11:16:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-05 11:16:09 +0100 |
commit | 914dda189d17deca368fce7b2feaefb5bfdaa343 (patch) | |
tree | 353d2dfbc63e92a66aef7464e4dd13722ac20ff9 | |
parent | 35da530489f22b7fb003a838eb1da5edd87043b1 (diff) | |
parent | 50e79b42b1ab0f1280b2631182796f7c4ed38390 (diff) | |
download | certwatch_db-914dda189d17deca368fce7b2feaefb5bfdaa343.zip certwatch_db-914dda189d17deca368fce7b2feaefb5bfdaa343.tar.gz certwatch_db-914dda189d17deca368fce7b2feaefb5bfdaa343.tar.bz2 |
Merge pull request #25 from alex/patch-1
Fixed URL for links to chromium bug tracker
-rw-r--r-- | web_apis.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_apis.fnc b/web_apis.fnc index da8bd88..bd77f15 100644 --- a/web_apis.fnc +++ b/web_apis.fnc @@ -821,7 +821,7 @@ BEGIN <TD> '; IF l_record.CHROME_ISSUE_NUMBER IS NOT NULL THEN - t_output := t_output || '<A href="https://code.google.com/p/chromium/issues/detail?id=' + t_output := t_output || '<A href="https://bugs.chromium.org/p/chromium/issues/detail?id=' || l_record.CHROME_ISSUE_NUMBER::text || '" target="_blank">'; IF l_record.INCLUDED_IN_CHROME IS NOT NULL THEN t_output := t_output || coalesce(l_record.NON_INCLUSION_STATUS, 'M' || l_record.INCLUDED_IN_CHROME::text); |