Skip to content

Commit 6877fd0

Browse files
ENGCOM-4110: Fixed redirection issue in Admin-> Content -> Schedule #20967
- Merge Pull Request #20967 from dominicfernando/magento2:redirect-issue-content-schedule - Merged commits: 1. de694d4 2. 29daef1
2 parents 95bc002 + 29daef1 commit 6877fd0

File tree

1 file changed

+8
-1
lines changed
  • app/code/Magento/Backend/Controller/Adminhtml/System/Design

1 file changed

+8
-1
lines changed

app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
*/
77
namespace Magento\Backend\Controller\Adminhtml\System\Design;
88

9-
class Save extends \Magento\Backend\Controller\Adminhtml\System\Design
9+
use Magento\Framework\App\Action\HttpPostActionInterface;
10+
11+
/**
12+
* Save design action.
13+
*/
14+
class Save extends \Magento\Backend\Controller\Adminhtml\System\Design implements HttpPostActionInterface
1015
{
1116
/**
1217
* Filtering posted data. Converting localized data if needed
@@ -26,6 +31,8 @@ protected function _filterPostData($data)
2631
}
2732

2833
/**
34+
* Save design action.
35+
*
2936
* @return \Magento\Backend\Model\View\Result\Redirect
3037
*/
3138
public function execute()

0 commit comments

Comments
 (0)