diff --git a/lib/actions/frontend/shopFrontendCompare.action.php b/lib/actions/frontend/shopFrontendCompare.action.php index d768be227..7cb9f6318 100644 --- a/lib/actions/frontend/shopFrontendCompare.action.php +++ b/lib/actions/frontend/shopFrontendCompare.action.php @@ -89,13 +89,13 @@ public function execute() 'products' => $products, ); - $frontend_compare = wa()->event('frontend_compare', $params); - $this->view->assign('frontend_compare', $frontend_compare); - $this->view->assign('features', $features); $this->view->assign('products', $products); + $frontend_compare = wa()->event('frontend_compare', $params); + $this->view->assign('frontend_compare', $frontend_compare); + $this->setLayout(new shopFrontendLayout()); $this->setThemeTemplate('compare.html'); } -} \ No newline at end of file +}