Emulation for MySQL 4.1.2

This commit is contained in:
Alexander M. Turek
2005-01-18 15:29:27 +00:00
parent 84cf122c3b
commit 0fe04f4b58
4 changed files with 71 additions and 21 deletions

View File

@@ -127,11 +127,13 @@ if (empty($engine) || empty($mysql_storage_engines[$engine])) {
. ' <tr>' . "\n"
. ' <th>' . "\n"
. ' ' . $strStorageEngine . "\n"
. ' </th>' . "\n"
. ' <th>' . "\n"
. ' ' . $strDescription . "\n"
. ' </th>' . "\n"
. ' </tr>' . "\n"
. ' </th>' . "\n";
if (PMA_MYSQL_INT_VERSION >= 40102) {
echo ' <th>' . "\n"
. ' ' . $strDescription . "\n"
. ' </th>' . "\n";
}
echo ' </tr>' . "\n"
. ' </thead>' . "\n"
. ' <tbody>' . "\n";
@@ -147,11 +149,13 @@ if (empty($engine) || empty($mysql_storage_engines[$engine])) {
. ' <a href="' . $common_url . $engine . '">' . "\n"
. ' ' . htmlspecialchars($details['Engine']) . "\n"
. ' </a>' . "\n"
. ' </td>' . "\n"
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
. ' ' . htmlspecialchars($details['Comment']) . "\n"
. ' </td>' . "\n"
. ' </tr>' . "\n";
. ' </td>' . "\n";
if (PMA_MYSQL_INT_VERSION >= 40102) {
echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
. ' ' . htmlspecialchars($details['Comment']) . "\n"
. ' </td>' . "\n";
}
echo ' </tr>' . "\n";
$useBgcolorOne = !$useBgcolorOne;
}
unset($useBgcolorOne, $common_url, $engine, $details);