From 8beebe8d4ad8a1a55f02df37db8bd8adabafb97d Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Wed, 5 Sep 2012 12:44:32 +0000 Subject: [PATCH] [-] CORE : fixed bug #PSCFV-3916 --- classes/controller/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/controller/Controller.php b/classes/controller/Controller.php index 88636b61c..17d420008 100644 --- a/classes/controller/Controller.php +++ b/classes/controller/Controller.php @@ -177,7 +177,7 @@ abstract class ControllerCore if ($this->ajax) { $action = Tools::getValue('action'); - if (!empty($action) && method_exists($this, 'displayAjax'.Tools::toCamelCase($action))) + if (!empty($action) && method_exists($this, 'displayAjax'.Tools::toCamelCase($action, true))) $this->{'displayAjax'.$action}(); elseif (method_exists($this, 'displayAjax')) $this->displayAjax();