summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeolim4 <contact@geolim4.com>2015-07-11 21:44:23 +0200
committerGeolim4 <contact@geolim4.com>2015-07-11 21:44:23 +0200
commitc10c47ae1e0aae5c4f0cbe86539ef80ee6701b69 (patch)
tree9db2540b0f31f6e750efee907024499e68d9e989
parent649fd428d991a73e9ddc06e3e06f99ee0430834a (diff)
downloadphp-git-c10c47ae1e0aae5c4f0cbe86539ef80ee6701b69.tar.gz
Fix #70048: When running a phpinfo(), if you have a very long cell value you got a table overflow.
-rw-r--r--ext/standard/css.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/css.c b/ext/standard/css.c
index b805915b5e..73771ed79f 100644
--- a/ext/standard/css.c
+++ b/ext/standard/css.c
@@ -37,7 +37,7 @@ PHPAPI void php_info_print_css(void) /* {{{ */
PUTS(".p {text-align: left;}\n");
PUTS(".e {background-color: #ccf; width: 300px; font-weight: bold;}\n");
PUTS(".h {background-color: #99c; font-weight: bold;}\n");
- PUTS(".v {background-color: #ddd; max-width: 300px; overflow-x: auto;}\n");
+ PUTS(".v {background-color: #ddd; max-width: 300px; overflow-x: auto; word-wrap: break-word;}\n");
PUTS(".v i {color: #999;}\n");
PUTS("img {float: right; border: 0;}\n");
PUTS("hr {width: 934px; background-color: #ccc; border: 0; height: 1px;}\n");