1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

fix output_reset_rewrite_vars() returning false everytime

This commit is contained in:
Antony Dovgal
2005-04-03 12:19:23 +00:00
parent c67da24e31
commit b2858fb449
2 changed files with 2 additions and 2 deletions

View File

@@ -1061,7 +1061,7 @@ int php_url_scanner_reset_vars(TSRMLS_D)
BG(url_adapt_state_ex).form_app.len = 0;
BG(url_adapt_state_ex).url_app.len = 0;
return FAILURE;
return SUCCESS;
}
PHP_MINIT_FUNCTION(url_scanner)

View File

@@ -490,7 +490,7 @@ int php_url_scanner_reset_vars(TSRMLS_D)
BG(url_adapt_state_ex).form_app.len = 0;
BG(url_adapt_state_ex).url_app.len = 0;
return FAILURE;
return SUCCESS;
}
PHP_MINIT_FUNCTION(url_scanner)