I kind of fixed the errors with this:
dboverview.php at 216
------------------
if (isset($collationList) && array_key_exists('Collation', $infoRow)
&& array_key_exists($infoRow['Collation'], $collationList)) {
echo '<td><div class="item column3">' .
$collationList[$infoRow['Collation']] . '</div></td>';
echo '<td><div class="item column4">' . $formattedOverhead . '</
div></td>';
} else if ($conn->getAdapter() == "mysql") {
echo '<td><div class="item column3"> </div></td>';
echo '<td><div class="item column4">' . $formattedOverhead . '</
div></td>';
}
------------------
and structure.php at 536
---------------------------
if (array_key_exists('Collation', $infoRow) && isset($collationList)
&& array_key_exists($infoRow['Collation'], $collationList)) {
echo '<dt>' . ("Charset") . ':</dt><dd>' .
$collationList[$infoRow['Collation']] . '</dd>';
}
---------------------------