]> granicus.if.org Git - php/commitdiff
Fix bug #2548.
authorAndrei Zmievski <andrei@php.net>
Sun, 17 Oct 1999 00:20:17 +0000 (00:20 +0000)
committerAndrei Zmievski <andrei@php.net>
Sun, 17 Oct 1999 00:20:17 +0000 (00:20 +0000)
ext/zlib/zlib.c

index fbe39adcc89d2070bfed2863081d4082cde33bb6..3c7a8e0596e023b369cf185761435b1cd7fa741f 100644 (file)
@@ -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);
        
 }