1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00

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