From 302b6ae7e15ee382e604f499b385c723a357d632 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 20 Mar 2009 11:59:18 +0000 Subject: [PATCH] "fixed not working xajax call, if no handler given and PHP runs with error_reporting E_ALL (undefined index ...)" --- xajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xajax.php b/xajax.php index 45a33982bc..325eff7b4b 100644 --- a/xajax.php +++ b/xajax.php @@ -87,7 +87,7 @@ function doXMLHTTP() if (strpos($arg0,'::') !== false && strpos($arg0,'.') === false) // static method name app_something::method { - list($className,$functionName,$handler) = explode('::',$arg0); + @list($className,$functionName,$handler) = explode('::',$arg0); list($appName) = explode('_',$className); } else