Forums
(@biophonc)
13 years, 10 months ago
just remove the “&” at line 1707: return call_user_func($handler, &$request); so that it looks like this: return call_user_func($handler, $request);
return call_user_func($handler, &$request);
return call_user_func($handler, $request);