Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:50342 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 44292 invoked from network); 18 Nov 2010 11:02:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Nov 2010 11:02:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=patrick.allaert@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=patrick.allaert@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.161.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: patrick.allaert@gmail.com X-Host-Fingerprint: 209.85.161.42 mail-fx0-f42.google.com Received: from [209.85.161.42] ([209.85.161.42:48561] helo=mail-fx0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 3A/88-32235-0B705EC4 for ; Thu, 18 Nov 2010 06:02:09 -0500 Received: by fxm16 with SMTP id 16so982222fxm.29 for ; Thu, 18 Nov 2010 03:02:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=xDLuswmIkJr51JUwVZUZpaWWhSW7Y66LQaeoBfqlTM0=; b=Au744Xv3FsL6vCVs3bo8rlw64zxyiGU4omtl4aEf8eOwM+/JyPUtxHpTJWQAFnkXnM dt7xGYH8ryjvTExdRJdYObL/i07GleB0gzFjutteUxziDByUbzWuM9nUtqJt5op+eZ/+ LWmM8lXLUCSmIUUbNlfcED0yQ3SN3B9WWgPeM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=uTn0bgOOLxzlwZbqf6Nqti+zgDCAcYgGq7s1YO2iBXBRRAXY5vP7WYDw5xbIk6h8XW 3HZI07P3HbmKrzWUSlZk2MlCWa2XKa4eBZblFxXMMvQLieNhgHnOGUhOs1BR4EIqRWUi fmi0ZKmdvQTUdsPLWkM11RG4OPIek9V+IpkHo= MIME-Version: 1.0 Received: by 10.223.93.137 with SMTP id v9mr374798fam.77.1290078126238; Thu, 18 Nov 2010 03:02:06 -0800 (PST) Sender: patrick.allaert@gmail.com Received: by 10.223.97.11 with HTTP; Thu, 18 Nov 2010 03:02:06 -0800 (PST) In-Reply-To: <27511E82-07F2-45F0-83B9-B7143F463DDC@iki.fi> References: <27511E82-07F2-45F0-83B9-B7143F463DDC@iki.fi> Date: Thu, 18 Nov 2010 12:02:06 +0100 X-Google-Sender-Auth: vlhX09k49DJz11hqCCXhSLbcsEY Message-ID: To: Jani Taskinen Cc: Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Magic quotes in trunk From: patrickallaert@php.net (Patrick ALLAERT) 2010/11/18 Jani Taskinen : > On Nov 18, 2010, at 12:41 PM, Patrick ALLAERT wrote: >> Disabling it by default is the first mandatory step, [done] in PHP >> 5.3, magic_quotes_gpc has been turned off by default at the same time >> as providing a -development and -production version of the php.ini >> file. > > AFAICT magic_quotes_gpc is still "On" in PHP_5_3 and trunk if you don't use any php.ini: > > $ php -n --ri core | grep magic > magic_quotes_gpc => On => On > magic_quotes_runtime => Off => Off > magic_quotes_sybase => Off => Off > > Or what did you mean? :) > > --Jani Jani, you are 100% right, I did not conceive that it was possible and sane to change php.ini's default value without the internal fallback. It makes me feel that it is therefore even more important to accept such a change in a PHP greater than 5! Patrick