From dbd39f3a5bc43bf3594827b96e14b06d179028f8 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 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17187 b9a71923-0436-4b27-9f14-aed3839534dd --- 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();