From 9e88935b2b59ff414049cb077e8c276bd1a5bbc8 Mon Sep 17 00:00:00 2001 From: Simon Sprankel Date: Wed, 8 Jul 2015 09:48:17 +0200 Subject: [PATCH] Fixed Call to call_user_func_array --- app/code/community/BL/CustomGrid/controllers/GridController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/community/BL/CustomGrid/controllers/GridController.php b/app/code/community/BL/CustomGrid/controllers/GridController.php index 0195a3d..6b68b14 100644 --- a/app/code/community/BL/CustomGrid/controllers/GridController.php +++ b/app/code/community/BL/CustomGrid/controllers/GridController.php @@ -600,7 +600,7 @@ protected function _applyGridsListAction( ) { try { $gridModel = $this->_initGridModel(); - call_user_func_array(array($gridModel, $methodName)); + call_user_func_array(array($gridModel, $methodName), $parameters); if ($saveAfter) { $gridModel->save();