Fix handling of -- (bug #1453430).
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2006-03-23 Michal Čihař <michal@cihar.com>
|
||||||
|
* libraries/import/sql.php: Fix handling of -- (bug #1453430).
|
||||||
|
|
||||||
2006-03-23 Alexander M. Turek <me@derrabus.de>
|
2006-03-23 Alexander M. Turek <me@derrabus.de>
|
||||||
* lang/german-*.inc.php: Updates, sync'ed some technical terms with the
|
* lang/german-*.inc.php: Updates, sync'ed some technical terms with the
|
||||||
German MySQL manual.
|
German MySQL manual.
|
||||||
|
@@ -72,7 +72,7 @@ if (isset($plugin_list)) {
|
|||||||
$p4 = 2147483647;
|
$p4 = 2147483647;
|
||||||
}
|
}
|
||||||
$p5 = strpos($buffer, '--', $i);
|
$p5 = strpos($buffer, '--', $i);
|
||||||
if ($p5 === FALSE) {
|
if ($p5 === FALSE || $p5 >= ($len - 2) || $buffer[$p5 + 2] > ' ') {
|
||||||
$p5 = 2147483647;
|
$p5 = 2147483647;
|
||||||
}
|
}
|
||||||
$p6 = strpos($buffer, '/*', $i);
|
$p6 = strpos($buffer, '/*', $i);
|
||||||
|
Reference in New Issue
Block a user