From 34d2efae1e8aa8846b02029304a8a0871459e1e8 Mon Sep 17 00:00:00 2001 From: bMancone Date: Tue, 8 Nov 2011 13:47:32 +0000 Subject: [PATCH] // Ajax_params is not mandatory git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9958 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/AdminController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AdminController.php b/classes/AdminController.php index 09a6b53b9..1accb0dc2 100644 --- a/classes/AdminController.php +++ b/classes/AdminController.php @@ -1388,7 +1388,7 @@ class AdminControllerCore extends Controller $helper->no_link = $this->list_no_link; $helper->colorOnBackground = $this->colorOnBackground; $helper->no_back = isset($this->no_back) ? $this->no_back : true; - $helper->ajax_params = $this->ajax_params; + $helper->ajax_params = (isset($this->ajax_params) ? $this->ajax_params : null); // For each action, try to add the corresponding skip elements list $helper->list_skip_actions = $this->list_skip_actions;