Skip to content

Commit

Permalink
Merge branch '4.1-dev' into 220306-unusedimport
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil E. Taylor committed Mar 6, 2022
2 parents 18ac101 + ded0867 commit f24b127
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function getOptions()
}
catch (\RuntimeException $e)
{
Factory::getApplication()->enqueueMessage($db->getMessage(), 'error');
Factory::getApplication()->enqueueMessage($e->getMessage(), 'error');
}

// Translate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function mapslist()
}
catch (\RuntimeException $e)
{
Factory::getApplication()->enqueueMessage($db->getMessage(), 'error');
Factory::getApplication()->enqueueMessage($e->getMessage(), 'error');
}

// Translate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected function getOptions()
}
catch (\RuntimeException $e)
{
Factory::getApplication()->enqueueMessage($db->getMessage(), 'error');
Factory::getApplication()->enqueueMessage($e->getMessage(), 'error');
}

// Merge any additional options in the XML definition.
Expand Down

0 comments on commit f24b127

Please sign in to comment.