diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-06-17 07:08:53 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-06-17 07:08:53 +0000 |
commit | 1d92510032297d5acedb872ffc3e871ae82b17c2 (patch) | |
tree | 025a76561ff90482180c903f1907188733b41953 | |
parent | 34cc1de2298b69ef8a6658e2233e78c136a7dcca (diff) | |
download | php-git-1d92510032297d5acedb872ffc3e871ae82b17c2.tar.gz |
changed default cell alignment to "left" (see bug id #5048)
-rw-r--r-- | ext/standard/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 551d52b7cd..d08a2659a0 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -522,7 +522,7 @@ PHPAPI void php_info_print_table_row(int num_cols, ...) row_element = " "; } php_printf("<TD %s>%s%s%s</td>", - (i==0?"BGCOLOR=\"" PHP_ENTRY_NAME_COLOR "\" ":"ALIGN=\"center\""), + (i==0?"BGCOLOR=\"" PHP_ENTRY_NAME_COLOR "\" ":"ALIGN=\"left\""), (i==0?"<B>":""), row_element, (i==0?"</B>":"")); |