// Compatibility with PHP 5.1 in new installer

This commit is contained in:
rMalie
2011-12-22 18:21:48 +00:00
parent 3279ca8a87
commit 033143363b
+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);
}
/**