Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:96466 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15406 invoked from network); 19 Oct 2016 06:08:54 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Oct 2016 06:08:54 -0000 Authentication-Results: pb1.pair.com header.from=smalyshev@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=smalyshev@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.192.174 as permitted sender) X-PHP-List-Original-Sender: smalyshev@gmail.com X-Host-Fingerprint: 209.85.192.174 mail-pf0-f174.google.com Received: from [209.85.192.174] ([209.85.192.174:33599] helo=mail-pf0-f174.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D3/00-14749-6FD07085 for ; Wed, 19 Oct 2016 02:08:54 -0400 Received: by mail-pf0-f174.google.com with SMTP id 128so10239988pfz.0 for ; Tue, 18 Oct 2016 23:08:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=mXM33eNUFV6YqVoQn3bvpqBLuBD1exhaz+MMR2N2PmQ=; b=092ZKy5Se+ryJx3JfVZ04Dkxa35uP1E/9hFqaLEIoarUGjA2YDvX/vHAW6f4It7rM3 2WC3OkJg8jZp5IFlliwTG/iFnpZP3HhayWb1qD3DjYwyIwJ66ByZd378vo7Qna4U+bUd /4ghuJ2bHbem8eORa+ajLZk0DFOJ9cZfegD4gg3Uzf1xFHxjHCrenXwvVa6YMN3JptGL LwUPoEkuZzX2kZaMTrYNlmcZTJlKnfWg2QrUz5MJn7SromThkgIlSyaTx+0+7Zmw+Yb5 O4mVabGHzS9y+YgmkQu87+XugGDpg5z7dhMGGuJ+lN9pWx2rSCpRmf6Ri8VGXUzpbqXR fblg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=mXM33eNUFV6YqVoQn3bvpqBLuBD1exhaz+MMR2N2PmQ=; b=Vpf/eQa3+nWiJ70517h4OeL/D3FFAEXxETCwnugggN9Ye/mTWDmXGi75WUAP9+Byqv 1NEMINx6bmaVLvIA3fTbCrWdyHb8t4P1erB86jqRvJJtUwuRXDLLWDFUH54rnUjZKMoS ptX7ayNlh2aYDt5B/VjSpZy2Fa9Wp2RpCRAELRWaiUCC/jCuadK2O9i9LfoGL4Q6wEuL gt+Ul48q5M4f51LsqOGeP9RhpxAUFO6HbIwQIxubs4xiegT52RUnLzPZ/ORuDEASy1pl EsEwsKtE5vo2IgZZyswMvHCtZBomS4rAI09R7eFxEIaSM1nM9wfXT0fxMOzEz+UPQ73+ OTlQ== X-Gm-Message-State: AA6/9RnrTyqAV2lFuF6l7jAtS8D/kZ5evDy1p6VxazcP+V0qGLoBwhCX0hxzD6jPwoIQhw== X-Received: by 10.99.107.130 with SMTP id g124mr6560741pgc.76.1476857331484; Tue, 18 Oct 2016 23:08:51 -0700 (PDT) Received: from Stas-Air.local (108-233-206-104.lightspeed.sntcca.sbcglobal.net. [108.233.206.104]) by smtp.gmail.com with ESMTPSA id yx8sm60378161pac.29.2016.10.18.23.08.50 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Oct 2016 23:08:50 -0700 (PDT) To: Yasuo Ohgaki , Davey Shafik , "internals@lists.php.net" References: Message-ID: <1d22f996-27b6-35bb-03a6-df3acf9e33d4@gmail.com> Date: Tue, 18 Oct 2016 23:08:49 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Re: Fixing insane session_start() behaviors From: smalyshev@gmail.com (Stanislav Malyshev) Hi! > I pushed patch fixes number of nonsense/inconsistent session function > behaviors. The additional patch is pushed so that it's easy to cherry > pick minimum fixes. The last push is the additional fixes. These changes look like a reasonable cleanup. I'm not a big fan of zend_parse_parameters_none additions, since I don't see any useful function for them, but they don't hurt either. I left some notes on the patch though, please look there. I'm not sure about 7.1 - while I don't see anything that would break any reasonable code, except issues noted on the pull, the patch is pretty big and I might have missed something. I guess it's for RM to decide. No objection for 7.2. I notice that most test changes deal with scenarios that were covered before, are there tests that test the new things - the scenarios for which handling has changed? I couldn't find tests for some cases, like INI modification, would be nice to add them. Also, a reminder that you'd have to update all the documentation in the manual to reflect the change in the return values. And UPGRADING too. -- Stas Malyshev smalyshev@gmail.com