diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php index 9434172..51c55a7 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php @@ -39,7 +39,7 @@ public function buildOptionsForm(&$form, &$form_state) { // Get all possible status codes defined by symfony. $options = Response::$statusTexts; - // Move 200/403/404/500 to the top. + // Move 403/404/500 to the top. $options = array( '404' => $options['404'], '403' => $options['403'],