From: Evan Prodromou Date: Mon, 18 Aug 2008 02:55:49 +0000 (-0400) Subject: use mb_substr for xmpp daemon check X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9d9ecffd45143a1214aafb5fab5c6f040c2250e;p=quix0rs-gnu-social.git use mb_substr for xmpp daemon check darcs-hash:20080818025549-84dde-0277e3c0b58a6d223f892376cfc9f5aa9df9714b.gz --- diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php index 43f2b6aaee..e5ecf9d2da 100755 --- a/scripts/xmppdaemon.php +++ b/scripts/xmppdaemon.php @@ -234,7 +234,7 @@ class XMPPDaemon { } function add_notice(&$user, &$pl) { - $notice = Notice::saveNew($user->id, trim(substr($pl['body'], 0, 140)), 'xmpp'); + $notice = Notice::saveNew($user->id, trim(mb_substr($pl['body'], 0, 140)), 'xmpp'); if (is_string($notice)) { $this->log(LOG_ERR, $notice); return;