// 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
This commit is contained in:
rMalie
2011-12-22 18:21:48 +00:00
parent a5c9e152bc
commit 59aeea0b28
+2 -1
View File
@@ -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);
}
/**