Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:56151 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 27695 invoked from network); 8 Nov 2011 09:28:38 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Nov 2011 09:28:38 -0000 Authentication-Results: pb1.pair.com header.from=alan@akbkhome.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=alan@akbkhome.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain akbkhome.com designates 202.81.246.113 as permitted sender) X-PHP-List-Original-Sender: alan@akbkhome.com X-Host-Fingerprint: 202.81.246.113 246-113.netfront.net Received: from [202.81.246.113] ([202.81.246.113:38090] helo=246-113.netfront.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 2A/81-20122-346F8BE4 for ; Tue, 08 Nov 2011 04:28:37 -0500 Received: from 154.126.198.203.static.netvigator.com ([203.198.126.154] helo=[192.168.1.10]) by akbkhome.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Mailfort v1.2) (envelope-from ) id 1RNhyo-0001Fo-Hi for internals@lists.php.net; Tue, 08 Nov 2011 17:28:30 +0800 Message-ID: <4EB8F63E.1000604@akbkhome.com> Date: Tue, 08 Nov 2011 17:28:30 +0800 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Icedove/3.1.13 MIME-Version: 1.0 To: internals@lists.php.net References: <4EB8B336.1040107@sugarcrm.com> In-Reply-To: <4EB8B336.1040107@sugarcrm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-mailfort-sig: f65e2c71a8b3f3d57a649ebfe39ef75c Subject: Re: [PHP-DEV] unsolved issues From: alan@akbkhome.com (Alan Knowles) Fixed that one. https://bugs.php.net/patch-display.php?bug_id=55475&patch=final_patch_for_5_4_and_HEAD_v2&revision=latest The alternative patch was to use the argument to enable/disable autoloader - which does not really solve the BC issues unfortunately. The only discussion was to whether is_subclass_of should not support the extra arg, since there was not strong opinions either way, it's probably better to keep it simple and leave it the same as PHP5.3. Regrds Alan On Tuesday, November 08, 2011 12:42 PM, Stas Malyshev wrote: > Hi! > >> Is_a has a patch attached to the bug. Tests pass etc. > > I'm looking at bug 55475, there are two patches there: > > is_a_5.4_alternative and final_patch_for_5_4_and_HEAD. Which one do > you mean? > > The latter has: > > - if (zend_lookup_class_ex(class_name, class_name_len, NULL, 0, &ce > TSRMLS_CC) == FAILURE) { > + if (zend_lookup_class_ex(class_name, class_name_len, NULL, &ce > TSRMLS_CC) == FAILURE) { > > which can't be right. >