diff options
author | Tomas V.V.Cox <cox@php.net> | 2001-08-04 10:47:10 +0000 |
---|---|---|
committer | Tomas V.V.Cox <cox@php.net> | 2001-08-04 10:47:10 +0000 |
commit | 96aab6aed446e9679f0a87fd053b83df1434d1a5 (patch) | |
tree | e6d2081155b9614ad7ab2786e56436bbccfd37e7 | |
parent | 724b4d409c105b8076fc6dd3b52a6382b53ff981 (diff) | |
download | php-git-96aab6aed446e9679f0a87fd053b83df1434d1a5.tar.gz |
don't show the call_user_method deprecated use warning (disturbs tests)
-rw-r--r-- | pear/PEAR.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php index bbdfcfccf0..2feafd8f98 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -497,7 +497,7 @@ class PEAR_Error is_object($this->callback[0]) && is_string($this->callback[1]) && strlen($this->callback[1])) { - call_user_method($this->callback[1], $this->callback[0], + @call_user_method($this->callback[1], $this->callback[0], $this); } } |