You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two syntax errors in saveToOutput of B13\Format\Service\PdfService lead to a Internal Server Error is this function is used:
Error (line 77) Is:header('Cache-Control :private'); Should be:header('Cache-Control: private'); (whitespace goes one to the right)
Error (line 83) Is:header('Content-Transfer-Encodin :binary', true); Should be:header('Content-Transfer-Encoding: binary', true); (add a g add Encoding and once more, the whitespace goes one to the right)
The text was updated successfully, but these errors were encountered:
Two syntax errors in
saveToOutput
ofB13\Format\Service\PdfService
lead to a Internal Server Error is this function is used:Error (line 77)
Is:
header('Cache-Control :private');
Should be:
header('Cache-Control: private');
(whitespace goes one to the right)Error (line 83)
Is:
header('Content-Transfer-Encodin :binary', true);
Should be:
header('Content-Transfer-Encoding: binary', true);
(add a g add Encoding and once more, the whitespace goes one to the right)The text was updated successfully, but these errors were encountered: