From 9428b0f22e8a053d5624ab0efe2043e702ec2de4 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 28 Aug 2011 16:05:10 +0000 Subject: [PATCH] Fix: Syntax error --- htdocs/core/class/html.formfile.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php index 3f538a58b7e..0d09ac01077 100644 --- a/htdocs/core/class/html.formfile.class.php +++ b/htdocs/core/class/html.formfile.class.php @@ -357,7 +357,7 @@ class FormFile $class='Modele'.ucfirst($modulepart); if (class_exists($class)) { - $modellist=$class::liste_modeles($this->db); + $modellist=call_user_func($class.'::liste_modeles',$this->db); } else {