diff --git a/ChangeLog b/ChangeLog
index ce60216ad..bc9cb0da5 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,15 @@ phpMyAdmin - Changelog
$Id$
$Source$
+2002-07-29 Loïc Chapeaux
+ * tbl_change.php3, line 203: fixed an xhtml bug (#587974) thanks to
+ Christophe Jaillet
+ * libraries/sqlparser.lib.php3: fixed parse errors (bug #588010)
+ thanks to Nagi Peters and
+ coding standards.
+ * Documentation.html: coding standards.
+ * libraries/relation.lib.php3: beautified generated page.
+
2002-07-28 Marc Delisle
* lang/romanian update, thanks to Valics Lehel
* lang/polish update, thanks to Jakub Wilk
diff --git a/Documentation.html b/Documentation.html
index c09eadc98..f5feaae06 100755
--- a/Documentation.html
+++ b/Documentation.html
@@ -1681,8 +1681,8 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
- [3.2] When dumping a large table in compressed mode, I get a memory limit
- error or a time limit error.
+ [3.2] When dumping a large table in compressed mode, I get a memory
+ limit error or a time limit error.
As of version 2.2.4, we build the compressed dump in memory, so large
tables dumps may hang. The only alternative we can think about (using
@@ -1692,10 +1692,10 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
- [3.3] With InnoDB tables, I lose foreign key relationships when I rename
+ [3.3] With InnoDB tables, I lose foreign key relationships when I rename
or alter a table.
- This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
+ This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
in mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.
' . "\n";
diff --git a/libraries/sqlparser.lib.php3 b/libraries/sqlparser.lib.php3
index eb92f6833..7b0c2be57 100644
--- a/libraries/sqlparser.lib.php3
+++ b/libraries/sqlparser.lib.php3
@@ -178,12 +178,12 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
break;
}
- // Check for MySQL escaping using a \
- // And check for ANSI escaping using the $quotetype character
- if (PMA_STR_charIsEscaped($sql, $pos) ) {
+ // Checks for MySQL escaping using a \
+ // And checks for ANSI escaping using the $quotetype character
+ if (PMA_STR_charIsEscaped($sql, $pos)) {
$pos ++;
continue;
- } else if (($sql[$pos] == $quotetype) && ($sql[$pos+1] == $quotetype)) {
+ } else if (($sql[$pos] == $quotetype) && ($sql[$pos + 1] == $quotetype)) {
$pos = $pos + 2;
continue;
} else {
@@ -391,7 +391,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
echo '---END CUT---