Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:44323 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98926 invoked from network); 16 Jun 2009 19:05:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Jun 2009 19:05:17 -0000 Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 72.14.220.159 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 72.14.220.159 fg-out-1718.google.com Received: from [72.14.220.159] ([72.14.220.159:51394] helo=fg-out-1718.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F2/C4-31180-CECE73A4 for ; Tue, 16 Jun 2009 15:05:17 -0400 Received: by fg-out-1718.google.com with SMTP id 16so1357208fgg.0 for ; Tue, 16 Jun 2009 12:05:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=BiAsd0a1DjJeJaY2X2erT8vMt8kOfjHfY6Lp5zW7RDw=; b=W82axLthPHry6oASjGGxQjN4k8rSe94uTjXDgcr6MFpGtcJCsfEi5QUUI2kd1aJJIx FG6rHAHzp5NxNPPbrhfpM8iR7FUthlhxfRSEFuviOQ/rFiVN7VSeY5J0FzcYFrvBkkWf fSeCLncWlS+XeTEL+bU5dr7sNq7ngFCZ8e2vI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Y+bNFv4Eg3lyrV7uTX4sEOrTDRnnsbIicHQnNHwJ9YuFYdutz0xQsHC4z7vyujfD1u wrVk8UArrmRDq0IqSqz/Yg/QywRNg88UlS70KWo2ItHi7KJytLgtF+Su89EBhmZEUYvC c4dwZidpdYzNNAdO3A3duIcrkkeXOjJCBAPgQ= MIME-Version: 1.0 Received: by 10.86.25.10 with SMTP id 10mr7900275fgy.79.1245179113442; Tue, 16 Jun 2009 12:05:13 -0700 (PDT) In-Reply-To: <4A37EB7D.7010209@chiaraquartet.net> References: <4A370CB2.9060602@chiaraquartet.net> <7f3ed2c30906160320m4625ae89i1b85c036ba798de0@mail.gmail.com> <4A3772DD.2010604@daevel.net> <7f3ed2c30906160333s3dda0831q5a2fed430fcfbd38@mail.gmail.com> <4A3783BA.6030008@gmail.com> <20090616140033.GA27274@panix.com> <4A37D8ED.3080308@chiaraquartet.net> <50E0C0BF-13EC-4C31-B66D-FC0F54417227@pooteeweet.org> <4A37EB7D.7010209@chiaraquartet.net> Date: Tue, 16 Jun 2009 21:05:13 +0200 Message-ID: <7f3ed2c30906161205t2ff47bd7hfc9e51292fef6fb3@mail.gmail.com> To: Greg Beaver Cc: Lukas Kahwe Smith , PHP Internals List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] set_magic_quotes_runtime is still E_DEPRECATED From: hannes.magnusson@gmail.com (Hannes Magnusson) On Tue, Jun 16, 2009 at 20:59, Greg Beaver wrote: > Lukas Kahwe Smith wrote: >> 1) its not about "punishing", its about alerting people that they are >> relying on stuff that will go away >> 2) E_DEPRECATE is for development only and only as a check you enable >> now and then >> 3) its off in both of the php.ini's we will ship with 5.3 > OK, then the UPGRADING guide needs a slight revision. =A0It says: > > - The following ini directives will now emit an E_DEPRECATED warning > =A0 =A0 upon startup if they are activated: Thats correct. bjori@jessica:~$ /usr/src/php/5.3/sapi/cli/php -n -ddefine_syslog_variables= =3D1 PHP Warning: Directive 'define_syslog_variables' is deprecated in PHP 5.3 and greater in Unknown on line 0 However, like I warned about, the warning is thrown so early that normal users won't ever see it. -Hannes