Index: trunk/core/kernel/utility/event.php =================================================================== diff -u -N -r4169 -r4418 --- trunk/core/kernel/utility/event.php (.../event.php) (revision 4169) +++ trunk/core/kernel/utility/event.php (.../event.php) (revision 4418) @@ -170,7 +170,9 @@ function getEventParam($name) { - return getArrayValue($this->specificParams, $name); + $args = func_get_args(); + array_unshift($args, $this->specificParams); + return call_user_func_array('getArrayValue', $args); // getArrayValue($this->specificParams, $name); } function getPrefixSpecial($from_submit=false) @@ -189,7 +191,7 @@ */ function setPseudoClass($appendix) { - $this->pseudoClass=$this->Prefix.$appendix; + $this->pseudoClass = $this->Prefix.$appendix; } function Init($prefix, $special = '')