Skip to content

Commit a1b81e5

Browse files
authored
ext/standard: Fix phpcredits() QA team heading alignment (php#22501)
The QA team title isn't centered correctly in phpcredits(). This PR fix this.
1 parent 2f3a1ec commit a1b81e5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ext/standard/credits.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ PHPAPI ZEND_COLD void php_print_credits(int flag) /* {{{ */
9999

100100
if (flag & PHP_CREDITS_QA) {
101101
php_info_print_table_start();
102-
php_info_print_table_header(1, "PHP Quality Assurance Team");
102+
php_info_print_table_colspan_header(1, "PHP Quality Assurance Team");
103103
php_info_print_table_row(1, "Ilia Alshanetsky, Joerg Behrens, Antony Dovgal, Stefan Esser, Moriyoshi Koizumi, Magnus Maatta, Sebastian Nohn, Derick Rethans, Melvyn Sopacua, Pierre-Alain Joye, Dmitry Stogov, Felipe Pena, David Soria Parra, Stanislav Malyshev, Julien Pauli, Stephen Zarkos, Anatol Belski, Remi Collet, Ferenc Kovacs");
104104
php_info_print_table_end();
105105
}

ext/standard/tests/general_functions/phpcredits.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Language Design & Concept
3333
%wPHP Documentation%w
3434
%a
3535

36-
PHP Quality Assurance Team
36+
%wPHP Quality Assurance Team%w
3737
%a
3838

3939
%wWebsites and Infrastructure team%w

0 commit comments

Comments
 (0)