GPS.PHP change for PHP 8.0 GPS.PHP change for PHP 8.0
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

GPS.PHP change for PHP 8.0

Started by altenae, October 06, 2021, 10:48:36 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

altenae

Hi All,

Found another file gps.php (line 97) with an error in combination with PHP 8.0
No more use of curly braces

$data = ($data{1} == $data{2} && $data{1} == $data{3}) ? $data{0} : $data;

changed into

$data = ($data[1] == $data[2] && $data[1] == $data[3]) ? $data[0] : $data;