From: Sascha Schumann Date: Sun, 22 Oct 2000 14:41:02 +0000 (+0000) Subject: Fix php://* being handled by the ftp handler X-Git-Tag: php-4.0.4RC3~562 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f69a4a431a5d286456cbbe65fa28cd2ce0519a69;p=php Fix php://* being handled by the ftp handler --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index d8550895da..1266b9494a 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -729,7 +729,7 @@ PHP_MINIT_FUNCTION(basic) if(FAILURE==php_register_url_wrapper("ftp",php_fopen_url_wrap_ftp)) { return FAILURE; } - if(FAILURE==php_register_url_wrapper("php",php_fopen_url_wrap_ftp)) { + if(FAILURE==php_register_url_wrapper("php",php_fopen_url_wrap_php)) { return FAILURE; } }