• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

XOOPS Cube Legacy base repository


Commit MetaInfo

Revision164e427f41453b58435fc01b6a10a200e1d35e30 (tree)
Zeit2011-11-19 16:13:54
Autornbuy <nbuy@704c...>
Commiternbuy

Log Message

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

Ändern Zusammenfassung

Diff

--- a/html/core/XCube_Delegate.class.php
+++ b/html/core/XCube_Delegate.class.php
@@ -618,7 +618,8 @@ class XCube_DelegateUtils
618618 function raiseEvent()
619619 {
620620 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);
622623 }
623624 }
624625