diff options
author | Andrei Zmievski <andrei@php.net> | 1999-10-17 00:20:17 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 1999-10-17 00:20:17 +0000 |
commit | d8868ab205a3b42afa8eac0045f84dcedd8d9875 (patch) | |
tree | da7a57d840a667446071884beab35357f2cb96b9 | |
parent | 9e0017536d2626d53ad905ddaf67ed6da26fec5a (diff) | |
download | php-git-d8868ab205a3b42afa8eac0045f84dcedd8d9875.tar.gz |
Fix bug #2548.
-rw-r--r-- | ext/zlib/zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index fbe39adcc8..3c7a8e0596 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -519,7 +519,7 @@ PHP_FUNCTION(gzgetss) } /* strlen() can be used here since we are doing it on the return of an fgets() anyway */ - _php3_strip_tags(buf, strlen(buf), ZLIBG(gzgetss_state), allow?(*allow)->value.str.val:NULL); + php_strip_tags(buf, strlen(buf), ZLIBG(gzgetss_state), allow?(*allow)->value.str.val:NULL); RETURN_STRING(buf, 0); } |