We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uninitialized string offset: 59 application/third_party/tcpdf/tcpdi_parser.php 828 The line on 828
Uninitialized string offset: 59 application/third_party/tcpdf/tcpdi_parser.php 828
$frag = $data{$offset} . @$data{$offset+1} . @$data{$offset+2} . @$data{$offset+3};
Should change to
$frag = isset($data{$offset}) ? $data{$offset} : ''; $frag .= isset($data{$offset+1}) ? $data{$offset+1} : ''; $frag .= isset($data{$offset+2}) ? $data{$offset+2} : ''; $frag .= isset($data{$offset+3}) ? $data{$offset+3} : '';
The text was updated successfully, but these errors were encountered:
Same issue still after 6 years Uninitialized string offset: 52 application/third_party/tcpdf/tcpdi_parser.php 818
The line on 818 $frag = $data[$offset] . @$data[$offset+1] . @$data[$offset+2] . @$data[$offset+3];
$frag = $data[$offset] . @$data[$offset+1] . @$data[$offset+2] . @$data[$offset+3];
Sorry, something went wrong.
No branches or pull requests
Uninitialized string offset: 59 application/third_party/tcpdf/tcpdi_parser.php 828
The line on 828
Should change to
The text was updated successfully, but these errors were encountered: