From 59aeea0b28212e183826d61a444926950181c25f Mon Sep 17 00:00:00 2001 From: rMalie Date: Thu, 22 Dec 2011 18:21:48 +0000 Subject: [PATCH] // Compatibility with PHP 5.1 in new installer git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11660 b9a71923-0436-4b27-9f14-aed3839534dd --- install-new/classes/controllerHttp.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-new/classes/controllerHttp.php b/install-new/classes/controllerHttp.php index 1cb507103..35c88441f 100644 --- a/install-new/classes/controllerHttp.php +++ b/install-new/classes/controllerHttp.php @@ -235,7 +235,8 @@ abstract class InstallControllerHttp */ public function l($str) { - return call_user_func_array(array($this->language, 'l'), func_get_args()); + $args = func_get_args(); + return call_user_func_array(array($this->language, 'l'), $args); } /**