-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Use php_info_print_table_header for actual column headers only #9485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The regex |
not a bug fix per say but sort of, so could it apply to a release branch, real question ? |
You mean "row", instead of "column"? |
Yes 🙂 |
Ah, nevermind. I understand now. Apparently I did not include all possible extensions in my local build. I've just verified the change by scrolling through the page. I'll also adjust the others. |
Using php_info_print_table_header() for "Foo: bar" looks odd and out of place, because the whole line is colored. It is also questionable from a HTML semantics point of view, because it does not described the columns that follow. The use of this across extensions is inconsistent. It was part of the skeleton, but ext/date or ext/json already use a regular row.
5f37fda
to
fa31348
Compare
@devnexen Probably not worth it. Without invoking https://xkcd.com/1172 someone might attempt to parse @iluuu1994 I've made a sweeping change across all uses of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nice improvement (although we cannot possibly cater to external extensions). Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🙂
Using php_info_print_table_header() for "Foo: bar" looks odd and out of place,
because the whole line is colored. It is also questionable from a HTML
semantics point of view, because it does not described the columns that follow.
The use of this across extensions is inconsistent. It was part of the skeleton,
but ext/date or ext/json already use a regular row.