server BF

This commit is contained in:
bfb-vserver-wwwdata 2022-10-17 21:35:06 +02:00
parent f3b5b09ed0
commit bd11d7973c
1 changed files with 1 additions and 1 deletions

View File

@ -185,6 +185,6 @@ try
catch (Exception $mex)
{
reportError("Root try-catch triggered", $mex);
if ($pdo->inTransaction()) $pdo->rollBack();
if ($pdo !== null && $pdo->inTransaction()) $pdo->rollBack();
api_return(500, ['success' => false, 'error' => ERR::INTERNAL_EXCEPTION, 'errhighlight' => -1, 'message' => 'PHP script threw exception.'."\n\n".'Exception: ' . $e->getMessage()]);
}