From 483fd5c54806ae82b3422d7d0fe59103449459d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Wed, 15 Aug 2001 15:00:04 +0000 Subject: [PATCH] Fixed a slashes bug if the query is displayed on screen to be confirmed --- sql.php3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql.php3 b/sql.php3 index f51a6f316..9cc786c38 100755 --- a/sql.php3 +++ b/sql.php3 @@ -67,7 +67,8 @@ if ($do_confirm) { $stripped_sql_query = $sql_query; } include('./header.inc.php3'); - echo $strDoYouReally . htmlspecialchars($sql_query) . ' ?
'; + echo $strDoYouReally . ' :
' . "\n"; + echo '' . htmlspecialchars($stripped_sql_query) . ' ?
'; ?>