Re: failing t/php/strings2.t

2016-11-01 Thread Petr Gajdos
On Tue, Nov 01, 2016 at 10:12:31AM -0500, William A Rowe Jr wrote: > On Tue, Nov 1, 2016 at 8:22 AM, Petr Gajdos wrote: > $ php -r 'var_dump(rawurlencode("~"));' > string(1) "~" > $ > > http://php.net/manual/en/function.rawurlencode.php > > Following patch

Re: failing t/php/strings2.t

2016-11-01 Thread William A Rowe Jr
On Tue, Nov 1, 2016 at 8:22 AM, Petr Gajdos wrote: > Hi, > > php 5.2 rawurlencode() converts tilde to %7E, this is not true from php > 5.3 on, though: > > $ php -r 'var_dump(rawurlencode("~"));' > string(1) "~" > $ > > http://php.net/manual/en/function.rawurlencode.php > >

failing t/php/strings2.t

2016-11-01 Thread Petr Gajdos
Hi, php 5.2 rawurlencode() converts tilde to %7E, this is not true from php 5.3 on, though: $ php -r 'var_dump(rawurlencode("~"));' string(1) "~" $ http://php.net/manual/en/function.rawurlencode.php Following patch is perhaps needed: