Undefined Offset
-
Testing PHP7 on localhost, I am getting an “undefined offset” warning for line 116 of
newstatpress/includes/nsp_functions-extra.php.I think the solution is to change that line from
list($null,$q)=explode("?",$url);
to
list($null,$q)=array_pad(explode("?",$url,2), 2, null);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Undefined Offset’ is closed to new replies.