Commit c501ae4f by Carsten Brandt

debug: fix highlight of redirect HTTP status

1xx status is not that common.
parent 94d6fb18
......@@ -12,7 +12,7 @@ if ($statusCode === null) {
}
if ($statusCode >= 200 && $statusCode < 300) {
$class = 'label-success';
} elseif ($statusCode >= 100 && $statusCode < 200) {
} elseif ($statusCode >= 300 && $statusCode < 400) {
$class = 'label-info';
} else {
$class = 'label-important';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment