Skip to content

Commit

Permalink
Fixed a minor error with PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Jan 15, 2022
1 parent 3075719 commit a525ea5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public_html/lib-common.php
Original file line number Diff line number Diff line change
Expand Up @@ -8233,9 +8233,10 @@ function COM_handleError($errNo, $errStr, $errFile = '', $errLine = 0, $errConte
if ($type == 1) {
var_dump($errContext);
}
$output .= htmlspecialchars(ob_get_clean()) . '</pre></body></html>';
$output .= htmlspecialchars(ob_get_clean()) . '</pre>';
}

$output .= '</body></html>';
echo $output;
}
exit;
Expand Down

0 comments on commit a525ea5

Please sign in to comment.