summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2001-12-06 13:31:34 +0000
committerSterling Hughes <sterling@php.net>2001-12-06 13:31:34 +0000
commit84ed9d387f1d54674c85d6ead7aef955d56756b3 (patch)
tree5e9a6c447ca7f9f9354a10f6770cfd67f3b4b487
parent91c6db000f06d4925c95aaf199ef3c03fb5c8c40 (diff)
downloadphp-git-84ed9d387f1d54674c85d6ead7aef955d56756b3.tar.gz
use PHP_INFO_ALL and PHP_CREDITS_ALL instead of hardcoding them
-rw-r--r--ext/standard/info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c
index 0f04665998..9350d50a5f 100644
--- a/ext/standard/info.c
+++ b/ext/standard/info.c
@@ -463,7 +463,7 @@ PHP_FUNCTION(phpinfo)
}
if(!argc) {
- flag = 0xFFFFFFFF;
+ flag = PHP_INFO_ALL;
}
php_print_info(flag TSRMLS_CC);
@@ -508,7 +508,7 @@ PHP_FUNCTION(phpcredits)
}
if(!argc) {
- flag = 0xFFFFFFFF;
+ flag = PHP_CREDITS_ALL;
}
php_print_credits(flag);