summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2003-04-25 17:40:28 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2003-04-25 17:40:28 +0000
commit95c2ba883af709cb28b54f6de577eeb69813f521 (patch)
treeaf3654501370ada61a1b759e7fb904b68d4c6728
parentfb743a3e27cc610505caa1b53e1c40305c18f73a (diff)
downloadphp-git-95c2ba883af709cb28b54f6de577eeb69813f521.tar.gz
MFH(r-1.172): moved copyright notice to the better place
-rw-r--r--ext/mbstring/mbstring.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c
index 8523aee838..3c0ba33b2b 100644
--- a/ext/mbstring/mbstring.c
+++ b/ext/mbstring/mbstring.c
@@ -1006,7 +1006,6 @@ PHP_MINFO_FUNCTION(mbstring)
{
php_info_print_table_start();
php_info_print_table_row(2, "Multibyte Support", "enabled");
- php_info_print_table_colspan_header(2, "mbstring extension makes use of \"streamable kanji code filter and converter\", which is distributed under the GNU Lesser General Public License version 2.1.");
#if defined(HAVE_MBSTR_JA)
php_info_print_table_row(2, "Japanese support", "enabled");
#endif
@@ -1030,6 +1029,10 @@ PHP_MINFO_FUNCTION(mbstring)
#endif
php_info_print_table_end();
+ php_info_print_table_start();
+ php_info_print_table_colspan_header(2, "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();
+
DISPLAY_INI_ENTRIES();
}
/* }}} */