debug: fix highlight of redirect HTTP status

1xx status is not that common.
This commit is contained in:
Carsten Brandt
2014-04-14 14:52:36 +02:00
parent 94d6fb1804
commit c501ae4f4d

View File

@ -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';