[geeklog-hg] geeklog: Fixed a bug where MBYTE_strlen() was not defined in som...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Wed Jan 8 10:21:24 EST 2014


changeset 9399:f7f35db48a45
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/f7f35db48a45
user: Kenji ITO <mystralkk at gmail.com>
date: Thu Jan 09 00:20:26 2014 +0900
description:
Fixed a bug where MBYTE_strlen() was not defined in some case (bug #0001616)

diffstat:

 public_html/lib-common.php |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (29 lines):

diff -r ce8a63e778fd -r f7f35db48a45 public_html/lib-common.php
--- a/public_html/lib-common.php	Wed Jan 08 23:54:09 2014 +0900
+++ b/public_html/lib-common.php	Thu Jan 09 00:20:26 2014 +0900
@@ -164,6 +164,12 @@
 TimeZoneConfig::setSystemTimeZone();
 
 /**
+* Include multibyte functions
+*
+*/
+require_once $_CONF['path_system'] . 'lib-mbyte.php';
+
+/**
 * Include plugin class.
 * This is a poorly implemented class that was not very well thought out.
 * Still very necessary
@@ -282,12 +288,6 @@
     }    
 }
 
-/**
-* Multibyte functions
-*
-*/
-require_once( $_CONF['path_system'] . 'lib-mbyte.php' );
-
 // Set theme
 $usetheme = '';
 if( isset( $_POST['usetheme'] ))



More information about the geeklog-cvs mailing list