Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:20979 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 66123 invoked by uid 1010); 1 Dec 2005 20:43:32 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 66107 invoked from network); 1 Dec 2005 20:43:32 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Dec 2005 20:43:32 -0000 X-Host-Fingerprint: 206.190.39.127 web51615.mail.yahoo.com Received: from ([206.190.39.127:38241] helo=web51615.mail.yahoo.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id A7/BC-14828-2706F834 for ; Thu, 01 Dec 2005 15:43:30 -0500 Received: (qmail 95416 invoked by uid 60001); 1 Dec 2005 20:43:28 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=viRBgdXCM7G9+/SVY+rVD4tpuIooM7MdjKmvL9D7napBAgIpjSOY9zgbJizaQS9GdJafMu+pn0MdaEPgZTu8MCBGdX7m9XdYW/y41fgpm8uoC+d2iRzwqJYKzT9ifP5GFjZCveOM/Ut7hRujMDl25Gl76FRWhbsNHPpRgdSJMVM= ; Message-ID: <20051201204328.95414.qmail@web51615.mail.yahoo.com> Received: from [24.215.131.184] by web51615.mail.yahoo.com via HTTP; Thu, 01 Dec 2005 12:43:28 PST Date: Thu, 1 Dec 2005 12:43:28 -0800 (PST) To: internals@lists.php.net MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1803854277-1133469808=:93925" Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] PHP 5.1.2 Release Plan From: msisolak@yahoo.com (Michael Sisolak) --0-1803854277-1133469808=:93925 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Id: Content-Disposition: inline As per the notes at http://www.php.net/~derick/meeting-notes.html, section 2.4.2: 'We make "var" an alias for "public" and remove the warning for it.' Could something like the attached patch be included as part of 5.1.2? Michel Sisolak msisolak@yahoo.com __________________________________ Start your day with Yahoo! - Make it your home page! http://www.yahoo.com/r/hs --0-1803854277-1133469808=:93925 Content-Type: text/plain; name="zend_language_parser.y.diff.txt" Content-Description: 3438265604-zend_language_parser.y.diff.txt Content-Disposition: inline; filename="zend_language_parser.y.diff.txt" --- zend_language_parser.y Mon Oct 17 03:57:00 2005 +++ zend_language_parser.y.new Thu Dec 01 15:35:04 2005 @@ -501,7 +501,7 @@ variable_modifiers: non_empty_member_modifiers { $$ = $1; } - | T_VAR { zend_error(E_STRICT, "var: Deprecated. Please use the public/private/protected modifiers"); $$.u.constant.value.lval = ZEND_ACC_PUBLIC; } + | T_VAR { $$.u.constant.value.lval = ZEND_ACC_PUBLIC; } ; method_modifiers: --0-1803854277-1133469808=:93925--