From f69bf15347abbe9a781da30fa3f68edd76c4053f Mon Sep 17 00:00:00 2001 From: wh Date: Mon, 16 Jun 2025 10:07:00 -0400 Subject: [PATCH] fix move category by fixing the paramter from 'aid' to 'paid' for previous category id --- Controller/Adminhtml/Category/Move.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/Adminhtml/Category/Move.php b/Controller/Adminhtml/Category/Move.php index d3440b03..e2622bca 100755 --- a/Controller/Adminhtml/Category/Move.php +++ b/Controller/Adminhtml/Category/Move.php @@ -92,7 +92,7 @@ public function execute() $parentNodeId = $this->getRequest()->getPost('pid', false); /** Blog category id after which we have put our Blog category */ - $prevNodeId = $this->getRequest()->getPost('aid', false); + $prevNodeId = $this->getRequest()->getPost('paid', false); /** @var $block Messages */ $block = $this->layoutFactory->create()->getMessagesBlock();