Update of /cvsroot/php-blog/serendipity/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27113/docs
Modified Files:
NEWS
Log Message:
use mb_* functions when available. I patched all strtolower/strtoupper/strlen/strpos/strrpos/substr/ucfirst calls which are related to possible UTF-8 input.
For performance reasons, there are native calls left which don't deal with UTF8 characters.
The callback routines for mb_* functions are inside include/lang.inc.php because we need the LANG_CHARSET constant information for the function, and the function needs to be loaded everywhere. compact.inc.php is loaded before languages, so we can'T put it in there.
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/docs/NEWS,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- NEWS 2 Dec 2004 10:45:19 -0000 1.20
+++ NEWS 2 Dec 2004 14:11:27 -0000 1.21
@@ -3,6 +3,10 @@
Version 0.8 ()
------------------------------------------------------------------------
+ * Use mbstring extension where available to correctly utilize PHPs
+ string functions for multibyte chars. This is needed for UTF-8
+ only languages like Chinese (garvinhicking)
+
* Move the page where you change your details out of the
configuration and into its own menuitem and page (tomsommer)
@@ -186,7 +190,7 @@
* Do not show entries of the future when entering their direct URL
(garvinhicking)
-
+
Version 0.7 (November 8th, 2004)
------------------------------------------------------------------------
|