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

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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;