Skip to content

Commit

Permalink
Merge pull request #72 from w3c/r308
Browse files Browse the repository at this point in the history
Handle 308 redirects in Web UI
  • Loading branch information
dontcallmedom authored Oct 20, 2023
2 parents c8a6e35 + cf36744 commit b8f15a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/checklink
Original file line number Diff line number Diff line change
Expand Up @@ -2770,7 +2770,7 @@ will <em>not</em> be able to follow this link.';
$whattodo =
'This is a temporary redirect. Update the link if you believe it makes sense, or leave it as is.';
}
elsif ($c == 301) {
elsif ($c == 301 || $c == 308) {
$whattodo =
'This is a permanent redirect. The link should be updated.';
}
Expand Down

0 comments on commit b8f15a4

Please sign in to comment.