diff options
-rw-r--r-- | pear/PEAR.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php index 977fa836ef..5b76d75404 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -750,8 +750,7 @@ class PEAR_Error is_object($this->callback[0]) && is_string($this->callback[1]) && strlen($this->callback[1])) { - @call_user_func($this->callback[0], $this->callback[1], - $this); + @call_user_func($this->callback, $this); } } } |