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 13:53:43 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-02 13:53:43 +0400
commite1fd3956316e84ab19b00898ea5db2260ae86af2 (patch)
tree5c9b331871a1183b063b6d267d4d19e49a84401b /db_export.php
parent619f6592eea5677130e2c3027acc7e081197b5f9 (diff)
removed MySQL < 5 code
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_export.php b/db_export.php
index 24064a7236..bb9b0d353a 100644
--- a/db_export.php
+++ b/db_export.php
@@ -15,7 +15,7 @@
*/
require_once './libraries/common.inc.php';
-// $sub_part is also used in db_info.inc.php to see if we are coming from
+// $sub_part is also used in db_info.inc.php to see if we are coming from
// db_export.php, in which case we don't obey $cfg['MaxTableList']
$sub_part = '_export';
require_once './libraries/db_common.inc.php';
@@ -48,7 +48,7 @@ $multi_values .= "\n";
foreach ($tables as $each_table) {
// ok we show also views
- //if (PMA_MYSQL_INT_VERSION >= 50000 && is_null($each_table['Engine'])) {
+ //if (is_null($each_table['Engine'])) {
// Don't offer to export views yet.
// continue;
//}