Re: [PHP-DEV] Stop replacing dots with underscores in query, post and cookie parameters for PHP 8?

2019-07-18 Thread Rasmus Schultz
On Thu, Jul 18, 2019 at 4:28 PM Dan Ackroyd wrote: > On Thu, 18 Jul 2019 at 11:08, Rasmus Schultz wrote: > > > > What about ... > > Although there might be real problems for this, please can you > describe a concrete problem that will occur, in a library people use, > rather than a vague

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Christoph M. Becker
On 18.07.2019 at 16:25, Sara Golemon wrote: > On Thu, Jul 18, 2019 at 6:10 AM Christoph M. Becker > wrote: > >> I agree that this would be the best solution in the long run, and it >> shouldn't be hard to adapt ReasonRepository[1] to read from a file >> instead of the DB. >> >> Any volunteers?

Re: [PHP-DEV] Stop replacing dots with underscores in query, post and cookie parameters for PHP 8?

2019-07-18 Thread Dan Ackroyd
On Thu, 18 Jul 2019 at 11:08, Rasmus Schultz wrote: > > What about ... Although there might be real problems for this, please can you describe a concrete problem that will occur, in a library people use, rather than a vague possible problem? For most framework users, all of the request

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Sara Golemon
On Thu, Jul 18, 2019 at 6:10 AM Christoph M. Becker wrote: > I agree that this would be the best solution in the long run, and it > shouldn't be hard to adapt ReasonRepository[1] to read from a file > instead of the DB. > > Any volunteers? > > [1] > < >

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Johannes Schlüter
On Thu, 2019-07-18 at 12:24 +0100, Peter Cowburn wrote: > I'm not sure if anyone other than us is still using this source code > (looking at the MySQL guys). If not, can we just include the reasons > in > the source directly, and forget about the database or a special file > containing the

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Pieter Hordijk
Hey all, I think we can just add the reasons to the file where it is being rendered. I am off for the weekend, but I can implement and test this after the weekend if nobody else picked it up by then. Pieter - Original Message - > From: "Peter Cowburn" > On Thu, 18 Jul 2019 at 12:10,

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Peter Cowburn
On Thu, 18 Jul 2019 at 12:10, Christoph M. Becker wrote: > On 18.07.2019 at 01:14, Stanislav Malyshev wrote: > > >> the quick fix descriptions of bugs.php.net[1] need some update. To my > >> knowledge, these come from the database, so could anybody with access to > >> it please take a look? > >

Re: [PHP-DEV] Bugsnet: Quick fix descriptions

2019-07-18 Thread Christoph M. Becker
On 18.07.2019 at 01:14, Stanislav Malyshev wrote: >> the quick fix descriptions of bugs.php.net[1] need some update. To my >> knowledge, these come from the database, so could anybody with access to >> it please take a look? > > Ideally, I think this should be in PHP file and not database, so it

Re: [PHP-DEV] Stop replacing dots with underscores in query, post and cookie parameters for PHP 8?

2019-07-18 Thread Rasmus Schultz
On Tue, Jul 16, 2019 at 2:34 PM Bishop Bettini wrote: > On Tue, Jul 16, 2019 at 3:51 AM Nikita Popov wrote: > > > On Tue, Jul 16, 2019 at 3:40 AM Arnold Daniels < > > arnold.adaniels...@gmail.com> > > wrote: > > > > > Hi, > > > > > > PHP replaces dots with underscores for $_GET, $_POST and

[PHP-DEV] PHP version 7.2.21RC1 is available for testing

2019-07-18 Thread Remi Collet
Hi, PHP 7.2.21 RC1 was just released and can be downloaded from: https://downloads.php.net/~remi/ Or using the git tag: php-7.2.12RC1 The Windows binaries are available at: http://windows.php.net/qa/ Please test it carefully, and report any bugs in the bug system. 7.2.21 should be

[PHP-DEV] PHP 7.3.8RC1 is available for testing

2019-07-18 Thread Christoph M. Becker
PHP 7.3.8RC1 has just been released and can be downloaded from: Or use the git tag: php-7.3.8RC1 Windows binaries are available at: Please test it carefully, and report any bugs in the bug system. 7.3.8 should be expected in 2

Re: [PHP-DEV] Stop replacing dots with underscores in query, post and cookie parameters for PHP 8?

2019-07-18 Thread Nicolas Grekas
Le mar. 16 juil. 2019 à 09:51, Nikita Popov a écrit : > On Tue, Jul 16, 2019 at 3:40 AM Arnold Daniels < > arnold.adaniels...@gmail.com> > wrote: > > > Hi, > > > > PHP replaces dots with underscores for $_GET, $_POST and $_COOKIE. This > > behavior once made sense because of Register globals.