Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 1ef5282

Browse files
authored
MAGETWO-80515: Fix 404 status header #11134
2 parents d6f5b65 + 0601979 commit 1ef5282

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Backend/Controller/Adminhtml/Noroute

1 file changed

+1
-1
lines changed

app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function execute()
4141
{
4242
/** @var \Magento\Backend\Model\View\Result\Page $resultPage */
4343
$resultPage = $this->resultPageFactory->create();
44-
$resultPage->setStatusHeader(404, '1.1', 'Forbidden');
44+
$resultPage->setStatusHeader(404, '1.1', 'Not Found');
4545
$resultPage->setHeader('Status', '404 File not found');
4646
$resultPage->addHandle('adminhtml_noroute');
4747
return $resultPage;

0 commit comments

Comments
 (0)