Skip to content
Snippets Groups Projects
Commit b1c43b3b authored by Carsten  Rose's avatar Carsten Rose
Browse files

AbstractException.php: fixed access to non existing array element.

parent e1fb14c4
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,7 @@ class AbstractException extends \Exception {
$arrMerged = OnArray::htmlentitiesOnArray(array_merge($arrMsg, $arrDebugShow));
if (!empty($os = $arrMerged[ERROR_MESSAGE_OS])) {
if (!empty($os = $arrMerged[ERROR_MESSAGE_OS] ?? '')) {
$beforeMatch = htmlentities("the right syntax to use near '", ENT_QUOTES);
$afterMatch = htmlentities("' at line [0-9]*$", ENT_QUOTES);
if (preg_match("/mysqli: 1064.*$beforeMatch.*$afterMatch/", $os)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment