diff options
author | Marcus Boerger <helly@php.net> | 2003-05-26 22:06:49 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-05-26 22:06:49 +0000 |
commit | 6d913a3bfc752609cca712aa0660dd473345c798 (patch) | |
tree | 02ab8731d146f00adcc943c4f21f000ef05c0071 /ext/spl/php_spl.c | |
parent | 955460a3190352341a598103dcfa5591c8a4cb6a (diff) | |
download | php-git-6d913a3bfc752609cca712aa0660dd473345c798.tar.gz |
- Fix handling of abstract methods. They must be inherited when inheriting
a method.
- Fix entry more (should be amed has_more).
- Add a check against that bug.
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index a60c504d33..4467b0aa60 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -131,7 +131,7 @@ PHP_MINIT_FUNCTION(spl) REGISTER_SPL_INTERFACE(spl, forward); REGISTER_SPL_INTF_FUNC(spl, forward, current); REGISTER_SPL_INTF_FUNC(spl, forward, next); - REGISTER_SPL_INTF_FUNC(spl, forward, more); + REGISTER_SPL_INTF_FUNC(spl, forward, has_more); REGISTER_SPL_INTERFACE(spl, sequence); REGISTER_SPL_INTF_FUNC(spl, sequence, rewind); |