diff options
author | Zeev Suraski <zeev@php.net> | 2001-06-13 17:04:36 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-06-13 17:04:36 +0000 |
commit | 1093ed17fb7d4543d79803c387cfd8cf2bc479db (patch) | |
tree | a0466521b9ec20fb5652b37e9e299e177f4a8eee /ext/standard/basic_functions.c | |
parent | a86a08cc061462218cd45bf75b495d66b933513b (diff) | |
download | php-git-1093ed17fb7d4543d79803c387cfd8cf2bc479db.tar.gz |
Clean-up
Remove a lot of 100% redundent code
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 50ae28eb4d..25ea43e167 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -372,7 +372,7 @@ function_entry basic_functions[] = { PHP_FE(print_r, NULL) PHP_FE(setcookie, NULL) - PHP_NAMED_FE(header, PHP_FN(Header), NULL) + PHP_FE(header, NULL) PHP_FE(headers_sent, NULL) PHP_FE(connection_aborted, NULL) @@ -857,7 +857,6 @@ PHP_RINIT_FUNCTION(basic) PHP_RINIT(lcg)(INIT_FUNC_ARGS_PASSTHRU); #endif - PHP_RINIT(head)(INIT_FUNC_ARGS_PASSTHRU); PHP_RINIT(filestat)(INIT_FUNC_ARGS_PASSTHRU); PHP_RINIT(syslog)(INIT_FUNC_ARGS_PASSTHRU); PHP_RINIT(assert)(INIT_FUNC_ARGS_PASSTHRU); |