Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23259 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 27437 invoked by uid 1010); 11 May 2006 18:30:07 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 27422 invoked from network); 11 May 2006 18:30:07 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 May 2006 18:30:07 -0000 X-PHP-List-Original-Sender: bgrupe@gmail.com X-Host-Fingerprint: 66.249.92.168 ug-out-1314.google.com Linux 2.4/2.6 Received: from ([66.249.92.168:31201] helo=ug-out-1314.google.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 9B/39-19568-FA283644 for ; Thu, 11 May 2006 14:30:07 -0400 Received: by ug-out-1314.google.com with SMTP id k3so266751ugf for ; Thu, 11 May 2006 11:30:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=qKYBsjs5KStA29MTwy6Tl2Y/ii/AvbWvwziyQfnY07wUESC5AhdK3dtmKlfjkc6l2CErEodf28r7X1zs8iUQGM1iNF2CWCUlUaJ19pmlMCGv5cokAScaaOnzKXTjVOzHD1ShQyiypfcMHcZtitpYFIngx5fk5fCZ5EyGl/E+I1Y= Received: by 10.67.86.1 with SMTP id o1mr872777ugl; Thu, 11 May 2006 11:30:04 -0700 (PDT) Received: from ?192.168.1.16? ( [80.128.11.106]) by mx.gmail.com with ESMTP id w40sm1964643ugc.2006.05.11.11.30.03; Thu, 11 May 2006 11:30:04 -0700 (PDT) Message-ID: <446382A4.2080205@gmail.com> Date: Thu, 11 May 2006 20:29:56 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.2) Gecko/20060308 Thunderbird/1.5.0.2 Mnenhy/0.7.4.0 MIME-Version: 1.0 To: Marian Kostadinov CC: internals@lists.php.net References: <20060510175335.788a140d@localhost.localdomain> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Re: Win snapshot is not built (PHP 5.2) From: bgrupe@gmail.com (Bastian Grupe) Marian Kostadinov wrote: > There is an issue about error_reporting setting in php.ini. I took my php > 5.1 php.ini file and used it for 5.2. Strangely it seemed that E_STRICT > suddenly turned on. > Is this an intended change or a bug? AFAIK it was intended to change E_ALL to include E_STRICT in 5.2+ So you might like to change error reporting to something like E_ALL & ~E_STRICT in order to restore the old behavior. -- Bastian