Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ext/standard/credits.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ PHPAPI ZEND_COLD void php_print_credits(int flag) /* {{{ */
/* Group */

php_info_print_table_start();
php_info_print_table_header(1, "PHP Group");
php_info_print_table_colspan_header(1, "PHP Group");
php_info_print_table_row(1, "Thies C. Arntzen, Stig Bakken, Shane Caraveo, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski");
php_info_print_table_end();
}
Expand All @@ -44,9 +44,9 @@ PHPAPI ZEND_COLD void php_print_credits(int flag) /* {{{ */
/* Design & Concept */
php_info_print_table_start();
if (!sapi_module.phpinfo_as_text) {
php_info_print_table_header(1, "Language Design & Concept");
php_info_print_table_colspan_header(1, "Language Design & Concept");
} else {
php_info_print_table_header(1, "Language Design & Concept");
php_info_print_table_colspan_header(1, "Language Design & Concept");
}
php_info_print_table_row(1, "Andi Gutmans, Rasmus Lerdorf, Zeev Suraski, Marcus Boerger");
php_info_print_table_end();
Expand Down
6 changes: 3 additions & 3 deletions ext/standard/tests/general_functions/phpcredits.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ var_dump(phpcredits(CREDITS_GROUP));
--EXPECTF--
PHP Credits

PHP Group
%wPHP Group%w
%a

Language Design & Concept
%wLanguage Design & Concept%w
%a

%wPHP Authors%w
Expand All @@ -45,6 +45,6 @@ bool(true)
--
PHP Credits

PHP Group
%wPHP Group%w
%a
bool(true)
Loading