From 1ee9e8aa082d98d532de1e44a6452c54c956318c Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Sat, 1 Sep 2012 14:36:50 +0200 Subject: [PATCH] index_ajax : fixed alling method of ajax function --- public_html/index_ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/index_ajax.php b/public_html/index_ajax.php index 44c70cd6..c40ddad8 100644 --- a/public_html/index_ajax.php +++ b/public_html/index_ajax.php @@ -18,7 +18,7 @@ if (!isset($_ERRORS)) { if (LSsession :: loadLSclass($class)) { $meth = 'ajax_'.$_REQUEST['action']; if (method_exists($class,$meth)) { - call_user_func(array($class,$meth),&$data); + call_user_func(array($class,$meth),$data); } } }