From eee6d0180c8b077161f7ae71edce1f678b6b979a Mon Sep 17 00:00:00 2001 From: Peter Yee Date: Sat, 5 Nov 2022 17:42:50 +0000 Subject: [PATCH] Fix: #4320 (htmlized version of RFC has bad errata link) (#4699) * Remove &rec_status=0 from "Errata exist" links for HTMLized RFCs Corrects Issue #4320: https://github.com/ietf-tools/datatracker/issues/4320 This is done by modifying the RFC_EDITOR_ERRATA_URL in ietf/settings.py so that the errant "&rfc_status=0" is removed. * Update ietf/settings.py Removes commented out RFC_EDITOR_ERRATA_URL line from original submission. Co-authored-by: Lars Eggert Co-authored-by: Lars Eggert --- ietf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/settings.py b/ietf/settings.py index aa35aa8e3..81139222d 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -783,7 +783,7 @@ RFC_EDITOR_GROUP_NOTIFICATION_EMAIL = "webmaster@rfc-editor.org" RFC_EDITOR_QUEUE_URL = "https://www.rfc-editor.org/queue2.xml" RFC_EDITOR_INDEX_URL = "https://www.rfc-editor.org/rfc/rfc-index.xml" RFC_EDITOR_ERRATA_JSON_URL = "https://www.rfc-editor.org/errata.json" -RFC_EDITOR_ERRATA_URL = "https://www.rfc-editor.org/errata_search.php?rfc={rfc_number}&rec_status=0" +RFC_EDITOR_ERRATA_URL = "https://www.rfc-editor.org/errata_search.php?rfc={rfc_number}" RFC_EDITOR_INLINE_ERRATA_URL = "https://www.rfc-editor.org/rfc/inline-errata/rfc{rfc_number}.html" RFC_EDITOR_INFO_BASE_URL = "https://www.rfc-editor.org/info/"