Fix php://* being handled by the ftp handler

This commit is contained in:
Sascha Schumann 2000-10-22 14:41:02 +00:00
parent 69d704622d
commit f69a4a431a

View File

@ -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;
}
}