Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-02 14:15:06 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-02 14:15:06 +0400
commit9f6d5979db4da92d71108aa7107728e13d467cb1 (patch)
tree129b83380814d6601e501a7c132bd4fc000fec99 /server_engines.php
parent1e81ce19e37d0613b08fb8397f228c65d7f20af7 (diff)
removed MySQL < 5 code
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php30
1 files changed, 11 insertions, 19 deletions
diff --git a/server_engines.php b/server_engines.php
index 02ee42713d..02a65fcad8 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -53,11 +53,9 @@ if (empty($_REQUEST['engine'])
*/
echo '<table>' . "\n"
. '<thead>' . "\n"
- . '<tr><th>' . $strStorageEngine . '</th>' . "\n";
- if (PMA_MYSQL_INT_VERSION >= 40102) {
- echo ' <th>' . $strDescription . '</th>' . "\n";
- }
- echo '</tr>' . "\n"
+ . '<tr><th>' . $strStorageEngine . '</th>' . "\n"
+ . ' <th>' . $strDescription . '</th>' . "\n"
+ . '</tr>' . "\n"
. '</thead>' . "\n"
. '<tbody>' . "\n";
@@ -76,13 +74,9 @@ if (empty($_REQUEST['engine'])
. ' <td><a href="./server_engines.php'
. PMA_generate_common_url(array('engine' => $engine)) . '">' . "\n"
. ' ' . htmlspecialchars($details['Engine']) . "\n"
- . ' </a>' . "\n"
- . ' </td>' . "\n";
- if (PMA_MYSQL_INT_VERSION >= 40102) {
- echo ' <td>' . htmlspecialchars($details['Comment']) . "\n"
- . ' </td>' . "\n";
- }
- echo '</tr>' . "\n";
+ . ' </a></td>' . "\n"
+ . ' <td>' . htmlspecialchars($details['Comment']) . '</td>' . "\n"
+ . '</tr>' . "\n";
$odd_row = !$odd_row;
}
unset($odd_row, $engine, $details);
@@ -103,13 +97,11 @@ if (empty($_REQUEST['engine'])
. ' ' . htmlspecialchars($engine_plugin->getTitle()) . "\n"
. ' ' . PMA_showMySQLDocu('', $engine_plugin->getMysqlHelpPage()) . "\n"
. '</h2>' . "\n\n";
- if (PMA_MYSQL_INT_VERSION >= 40102) {
- echo '<p>' . "\n"
- . ' <em>' . "\n"
- . ' ' . htmlspecialchars($engine_plugin->getComment()) . "\n"
- . ' </em>' . "\n"
- . '</p>' . "\n\n";
- }
+ echo '<p>' . "\n"
+ . ' <em>' . "\n"
+ . ' ' . htmlspecialchars($engine_plugin->getComment()) . "\n"
+ . ' </em>' . "\n"
+ . '</p>' . "\n\n";
$infoPages = $engine_plugin->getInfoPages();
if (!empty($infoPages) && is_array($infoPages)) {
echo '<p>' . "\n"