Browse Source

Change '302 Found' to '302 Moved Temporarily'

Visman 5 years ago
parent
commit
381fc5f88b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Models/Page.php

+ 1 - 0
app/Models/Page.php

@@ -371,6 +371,7 @@ abstract class Page extends Model
     protected function httpStatus(): Page
     {
         $list = [
+            302 => '302 Moved Temporarily',
             403 => '403 Forbidden',
             404 => '404 Not Found',
             405 => '405 Method Not Allowed',