Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:57197 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 37388 invoked from network); 4 Jan 2012 19:54:14 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Jan 2012 19:54:14 -0000 Authentication-Results: pb1.pair.com header.from=nikita.ppv@googlemail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=nikita.ppv@googlemail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.215.42 as permitted sender) X-PHP-List-Original-Sender: nikita.ppv@googlemail.com X-Host-Fingerprint: 209.85.215.42 mail-lpp01m010-f42.google.com Received: from [209.85.215.42] ([209.85.215.42:36187] helo=mail-lpp01m010-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 70/1F-50667-46EA40F4 for ; Wed, 04 Jan 2012 14:54:13 -0500 Received: by lagj5 with SMTP id j5so6760540lag.29 for ; Wed, 04 Jan 2012 11:54:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=+NAMwCIRp08l0k6jO5pMA8lyDr2fCgvuBu5Fhxxpbic=; b=teuS36OTuqlz8J/7d+E7YESb0G6d5l1tEg9mzwEJx+jPnfnZ4Jmu8TKAV1vV7JgH6V 1fw3bh5yEvuxxF+dMpkRDU7PCnPXTiqF5CHZKDJnlZAlTeHoOXpsAYO2srGJMeftcxWx r1Ru+6H3VS2o4zS0wwNUSg7x0215srmrjLhb0= MIME-Version: 1.0 Received: by 10.152.124.137 with SMTP id mi9mr5486414lab.6.1325706850174; Wed, 04 Jan 2012 11:54:10 -0800 (PST) Received: by 10.152.108.110 with HTTP; Wed, 4 Jan 2012 11:54:09 -0800 (PST) In-Reply-To: <4F04AD6D.80608@php.net> References: <4F048A03.4070408@sugarcrm.com> <4F04A172.7080509@sugarcrm.com> <4F04AA8E.6020701@sugarcrm.com> <4F04AD6D.80608@php.net> Date: Wed, 4 Jan 2012 20:54:09 +0100 Message-ID: To: Rasmus Lerdorf Cc: Ferenc Kovacs , Stas Malyshev , Laruence , PHP Internals Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [PHP-DEV] Re: another fix for max_input_vars. From: nikita.ppv@googlemail.com (Nikita Popov) On Wed, Jan 4, 2012 at 8:50 PM, Rasmus Lerdorf wrote: > Since it is one of these remotely-triggered errors that you can't > program around, it should probably be suppressed when display_errors is > on. There is another precedence for this, but I am drawing a blank on > where else we did this right now. > > -Rasmus You mean like with htmlspecialchars() before PHP 5.4? Please don't. It's really non-obvious to start hiding errors as soon as you enable error display. Nikita