undefined use_comments

This commit is contained in:
Marc Delisle
2003-03-02 01:42:57 +00:00
parent 17df19049b
commit 6317bb840d
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-03-01 Marc Delisle <lem9@users.sourceforge.net>
* lang/english: typo
* tbl_dump.php3: undefined variable $use_comments
2003-03-01 Michal Cihar <nijel@users.sourceforge.net>
* tbl_indexes.php3: Cleaner solution for showing query after changing
index.

View File

@@ -171,7 +171,7 @@ if ($num_tables == 0) {
else {
// No csv or xml or latex format -> add some comments at the top
if ($use_comments) {
if (isset($use_comments) && $use_comments) {
require('./libraries/relation.lib.php3');
$cfgRelation = PMA_getRelationsParam();
$use_comments_work = true;