Opened 9 years ago
Closed 5 years ago
#36310 closed defect (bug) (wontfix)
a small fix for endless update nagging in latest hhvm
Reported by: | natostanco | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.7 |
Component: | Upgrade/Install | Keywords: | |
Focuses: | Cc: |
Description
On [php] => 7.0.99-hhvm
on this line the null parameter makes the http_build_query
return null, causing the "please update!" message of doom, changing it to false solves it.
Change History (5)
#2
@
9 years ago
I believe it was the php version reported by wp, maybe from phpinfo? when I tested this I was on hhvm 3.12 iirc
#3
@
8 years ago
@natostanco Are you using PHP7 in strict mode? Found this issue for Guzzle: https://github.com/guzzle/guzzle/issues/1366
<?php declare(strict_types=1); http_build_query( [], null, '&' );
produces a fatal error: Uncaught TypeError: http_build_query() expects parameter 2 to be string, null given
#5
@
5 years ago
- Keywords reporter-feedback removed
- Resolution set to wontfix
- Status changed from new to closed
Since this is an issue with HHVM, I am going to close this out. Support for HHVM was removed from WordPress in 2017.
Note: See
TracTickets for help on using
tickets.
@natostanco Welcome to Trac and thanks for the creating the ticket :)
What version of HHVM are you using?
The latest version is
3.13.1
so I am trying to work out where7.0.99-hhvm
comes from