We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba649a0 commit 35408f9Copy full SHA for 35408f9
app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Delete.php
@@ -50,9 +50,9 @@ public function __construct(
50
*/
51
public function execute()
52
{
53
- $viewId = array_pop(explode('.', $this->_request->getParam('data')));
+ $viewIds = explode('.', $this->_request->getParam('data'));
54
$bookmark = $this->bookmarkManagement->getByIdentifierNamespace(
55
- $viewId,
+ array_pop($viewIds),
56
$this->_request->getParam('namespace')
57
);
58
0 commit comments