]> granicus.if.org Git - php/commitdiff
Fix #70048: When running a phpinfo(), if you have a very long cell value you got...
authorGeolim4 <contact@geolim4.com>
Sat, 11 Jul 2015 19:44:23 +0000 (21:44 +0200)
committerGeolim4 <contact@geolim4.com>
Sat, 11 Jul 2015 19:44:23 +0000 (21:44 +0200)
ext/standard/css.c

index b805915b5e3887705096377e098b5ca5612c26af..73771ed79fb92fa6e45f1f38b074eff1c03c1fbe 100644 (file)
@@ -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");