diff options
author | Stig Bakken <ssb@php.net> | 2001-12-12 00:10:47 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-12-12 00:10:47 +0000 |
commit | 64349569def2b1f7794314257605bf3e7b4424b8 (patch) | |
tree | e48539ddacf6ae7181700657b37a87c2275e5e5b /pear | |
parent | 18f2ffeeaddb85ce722c6a9d2786479d4ab46ead (diff) | |
download | php-git-64349569def2b1f7794314257605bf3e7b4424b8.tar.gz |
* make do without overload function
Diffstat (limited to 'pear')
-rw-r--r-- | pear/PEAR/Remote.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pear/PEAR/Remote.php b/pear/PEAR/Remote.php index f5431d2119..0ab0f9f777 100644 --- a/pear/PEAR/Remote.php +++ b/pear/PEAR/Remote.php @@ -110,6 +110,8 @@ class PEAR_Remote extends PEAR // }}} } -overload("PEAR_Remote"); +if (function_exists("overload")) { + overload("PEAR_Remote"); +} ?>
\ No newline at end of file |