XOOPS Cube Legacy base repository
Revision | 164e427f41453b58435fc01b6a10a200e1d35e30 (tree) |
---|---|
Zeit | 2011-11-19 16:13:54 |
Autor | nbuy <nbuy@704c...> |
Commiter | nbuy |
call_user_func_array() arguents need to use variable.
git-svn-id: https://xoopscube.svn.sourceforge.net/svnroot/xoopscube/Package_Legacy/trunk@1057 704cf05f-ae62-4b0e-a484-234ee0250e75
@@ -618,7 +618,8 @@ class XCube_DelegateUtils | ||
618 | 618 | function raiseEvent() |
619 | 619 | { |
620 | 620 | if (func_num_args()) { |
621 | - return call_user_func_array(array('XCube_DelegateUtils','call'),func_get_args()); | |
621 | + $args = func_get_args(); | |
622 | + return call_user_func_array(array('XCube_DelegateUtils','call'), $args); | |
622 | 623 | } |
623 | 624 | } |
624 | 625 |