diff options
| author | Zeev Suraski <zeev@php.net> | 2000-12-19 22:59:14 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-12-19 22:59:14 +0000 |
| commit | 48b410c41e397f52b753c891cdf263ed0cb827a1 (patch) | |
| tree | 34217f7622ea109d9a8e9d6bdc7529f5f40339c0 | |
| parent | 1d35ad33c67d5aee945b7eff1aacf65333e2c83b (diff) | |
| download | php-git-48b410c41e397f52b753c891cdf263ed0cb827a1.tar.gz | |
Add the QA team to the credits
| -rw-r--r-- | ext/standard/credits.c | 7 | ||||
| -rw-r--r-- | ext/standard/info.c | 1 | ||||
| -rw-r--r-- | ext/standard/info.h | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/ext/standard/credits.c b/ext/standard/credits.c index ee041e74fc..4c0fa8f1e3 100644 --- a/ext/standard/credits.c +++ b/ext/standard/credits.c @@ -91,6 +91,13 @@ PHPAPI void php_print_credits(int flag) php_info_print_table_end(); } + if (flag & PHP_CREDITS_QA) { + php_info_print_table_start(); + php_info_print_table_header(1, "PHP Quality Assurance Team"); + php_info_print_table_row(1, "Andre Langhorst, Hellekin O. Wolf, Jalal Pushman, James Moore, Jani Taskinen, Joey Smith, Olivier Cahagne, Phil Driscoll, Zak Greant"); + php_info_print_table_end(); + } + if (flag & PHP_CREDITS_FULLPAGE) { PUTS("</body></html>\n"); } diff --git a/ext/standard/info.c b/ext/standard/info.c index 15ae2e53e3..17dedeea3c 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -434,6 +434,7 @@ void register_phpinfo_constants(INIT_FUNC_ARGS) REGISTER_LONG_CONSTANT("CREDITS_MODULES", PHP_CREDITS_MODULES, CONST_PERSISTENT|CONST_CS); REGISTER_LONG_CONSTANT("CREDITS_DOCS", PHP_CREDITS_DOCS, CONST_PERSISTENT|CONST_CS); REGISTER_LONG_CONSTANT("CREDITS_FULLPAGE", PHP_CREDITS_FULLPAGE, CONST_PERSISTENT|CONST_CS); + REGISTER_LONG_CONSTANT("CREDITS_QA", PHP_CREDITS_QA, CONST_PERSISTENT|CONST_CS); REGISTER_LONG_CONSTANT("CREDITS_ALL", PHP_CREDITS_ALL, CONST_PERSISTENT|CONST_CS); } diff --git a/ext/standard/info.h b/ext/standard/info.h index 67248a706d..9db602e5f8 100644 --- a/ext/standard/info.h +++ b/ext/standard/info.h @@ -42,6 +42,7 @@ #define PHP_CREDITS_MODULES (1<<3) #define PHP_CREDITS_DOCS (1<<4) #define PHP_CREDITS_FULLPAGE (1<<5) +#define PHP_CREDITS_QA (1<<6) #define PHP_CREDITS_ALL 0xFFFFFFFF #define PHP_LOGO_GUID "PHPE9568F34-D428-11d2-A769-00AA001ACF42" |
