Patch patch-5.3.7.diff for PHP options/info functions Bug #55469
Patch version 2011-08-20 20:08 UTC
Return to Bug #55469 |
Download this patch
Patch Revisions:
Developer: virsacer@web.de
--- php-5.3.7/ext/mbstring/mbstring.c Mon Jul 25 13:42:53 2011
+++ php-5.3.7-edited/ext/mbstring/mbstring.c Sat Aug 20 21:51:00 2011
@@ -1519,9 +1519,9 @@
php_info_print_table_row(2, "HTTP input encoding translation", MBSTRG(encoding_translation) ? "enabled": "disabled");
php_info_print_table_end();
- php_info_print_table_start();
- php_info_print_table_header(1, "mbstring extension makes use of \"streamable kanji code filter and converter\", which is distributed under the GNU Lesser General Public License version 2.1.");
- php_info_print_table_end();
+ php_info_print_box_start(0);
+ PUTS("mbstring extension makes use of \"streamable kanji code filter and converter\", which is distributed under the GNU Lesser General Public License version 2.1.");
+ php_info_print_box_end();
#if HAVE_MBREGEX
PHP_MINFO(mb_regex)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
|