Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:45552 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 53796 invoked from network); 10 Sep 2009 12:37:39 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 Sep 2009 12:37:39 -0000 Authentication-Results: pb1.pair.com smtp.mail=dave@dmi.me.uk; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=dave@dmi.me.uk; sender-id=unknown; domainkeys=bad (key type) Received-SPF: error (pb1.pair.com: domain dmi.me.uk from 77.68.52.130 cause and error) DomainKey-Status: bad (key type) X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: dave@dmi.me.uk X-Host-Fingerprint: 77.68.52.130 server77-68-52-130.live-servers.net Received: from [77.68.52.130] ([77.68.52.130:45503] helo=scaramanga.siterage.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id FE/22-42016-F03F8AA4 for ; Thu, 10 Sep 2009 08:37:36 -0400 Received: from localhost (scaramanga.siterage.net [127.0.0.1]) by scanner.scaramanga.siterage.net (SiteRage Mail Server) with ESMTP id 1D8E946360; Thu, 10 Sep 2009 13:37:33 +0100 (BST) X-Spam-Flag: NO X-Spam-Score: -2.536 X-Spam-Level: X-Spam-Status: No, score=-2.536 required=5 tests=[ALL_TRUSTED=-1.8, AWL=1.863, BAYES_00=-2.599] Received: from scaramanga.siterage.net ([127.0.0.1]) by localhost (scaramanga.siterage.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id yND+14hT0Pgz; Thu, 10 Sep 2009 13:37:32 +0100 (BST) Received: from [192.168.201.2] (ip9.net195-72-173.ci-net.com [195.72.173.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by scaramanga.siterage.net (SiteRage Mail Server) with ESMTPSA id AB2092E2A9; Thu, 10 Sep 2009 13:37:32 +0100 (BST) DomainKey-Signature: a=rsa-sha1; s=scara-dk; d=dmi.me.uk; c=simple; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=Cbg/RF8So729+l1T8/Zjs3IRDlTvVsCXpnDXNDNIAfVBhSIAl2BEFSGeLcLquyhuL vo+igSYLJAihKgM67JoD9gXnic6lB3WnDp+v1cF+gRsfFgC1EU/V1YJBRQMforsfLGU By+4TFCq0J8zPX2vUMKMcgurGsva9cgOopUWzRY= Message-ID: <4AA8F30C.4080800@dmi.me.uk> Date: Thu, 10 Sep 2009 13:37:32 +0100 User-Agent: Thunderbird 2.0.0.22 (X11/20090605) MIME-Version: 1.0 To: Tony Marston CC: internals@lists.php.net References: <83.35.38554.204D7AA4@pb1.pair.com> <40100.4e3f9432.1252518200.nsm@avilys.eik.lt> <4A.C8.06945.E06B8AA4@pb1.pair.com> <1674.c316b4e9.1252580285.nsm@avilys.eik.lt> <2E.A1.42016.120F8AA4@pb1.pair.com> In-Reply-To: <2E.A1.42016.120F8AA4@pb1.pair.com> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] mb_string.func_overload has secretly been changed from PERDIR to SYSTEM From: dave@dmi.me.uk (Dave Ingram) Tony Marston wrote: > There is no set_up_language() function, and what has SquirrelMail got to do > with PHP? > > Unless you can point to some official documentation on the PHP web site your > "advice" is totally unsubstantiated and virtually worthless. > He was referring to set_up_language() defined within SquirrelMail's functions/i18n.php which contains: // mbstring.func_overload<>0 fix. See cvs HEAD comments. if ($squirrelmail_language != 'ja_JP' && function_exists('mb_internal_encoding') && check_php_version(4,2,0) && (int)ini_get('mbstring.func_overload')!=0) { mb_internal_encoding('pass'); } among other things. This appears to be what he was referring to, particularly the "mb_internal_encoding('pass');" call. Dave