bug 434405
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2001-06-22 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* sql.php3: bug 434405: percent bug in delete queries
|
||||||
|
|
||||||
2001-06-22 Steve Alberty <alberty@neptunlabs.de>
|
2001-06-22 Steve Alberty <alberty@neptunlabs.de>
|
||||||
* tbl_copy.php3: fixes serious problem with copy table and new
|
* tbl_copy.php3: fixes serious problem with copy table and new
|
||||||
structure definition
|
structure definition
|
||||||
|
4
sql.php3
4
sql.php3
@@ -36,10 +36,10 @@ if($is_drop_sql_query && !isset($btnDrop)) {
|
|||||||
$stripped_sql_query = $sql_query;
|
$stripped_sql_query = $sql_query;
|
||||||
}
|
}
|
||||||
include("./header.inc.php3");
|
include("./header.inc.php3");
|
||||||
echo $strDoYouReally.urldecode($stripped_sql_query)."?<br>";
|
echo $strDoYouReally.$stripped_sql_query."?<br>";
|
||||||
?>
|
?>
|
||||||
<form action="sql.php3" method="post" enctype="application/x-www-form-urlencoded">
|
<form action="sql.php3" method="post" enctype="application/x-www-form-urlencoded">
|
||||||
<input type="hidden" name="sql_query" value="<?php echo urldecode($stripped_sql_query); ?>">
|
<input type="hidden" name="sql_query" value="<?php echo $stripped_sql_query; ?>">
|
||||||
<input type="hidden" name="server" value="<?php echo $server ?>">
|
<input type="hidden" name="server" value="<?php echo $server ?>">
|
||||||
<input type="hidden" name="lang" value="<?php echo $lang;?>">
|
<input type="hidden" name="lang" value="<?php echo $lang;?>">
|
||||||
<input type="hidden" name="db" value="<?php echo $db ?>">
|
<input type="hidden" name="db" value="<?php echo $db ?>">
|
||||||
|
Reference in New Issue
Block a user