diff options
| author | Zeev Suraski <zeev@php.net> | 2000-04-14 18:22:43 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-04-14 18:22:43 +0000 |
| commit | b6b79a8d90d622628557bcce2e190c79d6522b91 (patch) | |
| tree | 8fa8edc67eb0240f43b820f495496e6beb5c617c | |
| parent | 6727342b7a48ad274087d2b8760568c080199c28 (diff) | |
| download | php-git-b6b79a8d90d622628557bcce2e190c79d6522b91.tar.gz | |
Add the documentation team to the credits page
| -rw-r--r-- | ext/standard/info.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 086f82762e..a5f57c117f 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -404,7 +404,11 @@ void php_print_credits(int flag) } if (flag & PHP_CREDITS_DOCS) { - /* Documentation */ + php_info_print_table_start(); + php_info_print_table_header(1, "PHP Documentation Team"); + php_info_print_table_row(1, "Alexander Aulbach, Stig Bakken, Rasmus Lerdorf, Egon Scmid, Zeev Suraski, Lars Torben Wilson, Jim Winstead"); + php_info_print_table_row(1, "Edited by: Stig Bakken"); + php_info_print_table_end(); } if (flag & PHP_CREDITS_FULLPAGE) { |
