Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:10700 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 67734 invoked by uid 1010); 21 Jun 2004 18:01:15 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 67710 invoked from network); 21 Jun 2004 18:01:15 -0000 Received: from unknown (HELO fmail1.hs-bremen.de) (194.94.24.14) by pb1.pair.com with SMTP; 21 Jun 2004 18:01:15 -0000 Received: from localhost (fmail1 [127.0.0.1]) by fmail1.hs-bremen.de (Postfix) with ESMTP id 16582338D5; Mon, 21 Jun 2004 20:01:13 +0200 (CEST) Received: from fmail1.hs-bremen.de ([127.0.0.1]) by localhost (fmail1 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00409-08; Mon, 21 Jun 2004 20:01:12 +0200 (CEST) Received: from mail.hs-bremen.de (mail.hs-bremen.de [194.94.24.31]) by fmail1.hs-bremen.de (Postfix) with ESMTP id B880A33099; Mon, 21 Jun 2004 20:01:12 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.hs-bremen.de (Postfix) with ESMTP id DFB10524105; Mon, 21 Jun 2004 20:01:13 +0200 (CEST) Received: from mail.hs-bremen.de ([127.0.0.1]) by localhost (mail [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19009-07; Mon, 21 Jun 2004 20:01:13 +0200 (CEST) Received: from silverbox (nat.rz.hs-bremen.de [194.94.24.23]) by mail.hs-bremen.de (Postfix) with SMTP id 3F4BB524102; Mon, 21 Jun 2004 20:01:13 +0200 (CEST) Message-ID: <014401c457b9$a9857ac0$166519ac@silverbox> To: "Derick Rethans" Cc: References: <009f01c457b8$f2bcb970$166519ac@silverbox> Date: Mon, 21 Jun 2004 20:00:39 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Virus-Scanned: by amavisd-new at mail.hs-bremen.de X-Virus-Scanned: by amavisd-new at fmail1.hs-bremen.de Subject: Re: [PHP-DEV] [PATCH] Bug #28822 From: fschaper@intux.org ("Florian Schaper") Jup, noticed. Let's try that again: ------------- schnipp ----------------- --- spl_array.c 2004-06-20 20:30:30.000000000 +0200 +++ spl_array.c 2004-06-21 19:37:18.000000000 +0200 @@ -337,7 +337,7 @@ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &index) == FAILURE) { return; } - RETURN_BOOL(spl_array_has_dimension(getThis(), index, 1 TSRMLS_CC) == SUCCESS); + RETURN_BOOL(spl_array_has_dimension(getThis(), index, 1 TSRMLS_CC) != 0 ); } /* }}} */ /* {{{ proto bool ArrayObject::offsetGet(mixed $index)