Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxmujay <xmujay@gmail.com>2013-08-20 17:36:58 +0400
committerxmujay <xmujay@gmail.com>2013-08-20 17:36:58 +0400
commitea1f6f37500b3db5917212fd9b07b4720f9218f0 (patch)
tree3ce904c166e4d2b5dde6492979fbe4fe8f05591f /tbl_sql.php
parenta820f0da5d684ae6f14faa7eaa0c9ea3cf96a8f2 (diff)
refactor PMA_getHtmlForSqlQueryForm and fix code style
Diffstat (limited to 'tbl_sql.php')
-rw-r--r--tbl_sql.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/tbl_sql.php b/tbl_sql.php
index 0d1006feb2..00927747bd 100644
--- a/tbl_sql.php
+++ b/tbl_sql.php
@@ -39,9 +39,13 @@ require_once 'libraries/tbl_info.inc.php';
/**
* Query box, bookmark, insert data from textfile
*/
-PMA_sqlQueryForm(
- true, false,
- isset($_REQUEST['delimiter']) ? htmlspecialchars($_REQUEST['delimiter']) : ';'
+$response->addHTML(
+ PMA_getHtmlForSqlQueryForm(
+ true, false,
+ isset($_REQUEST['delimiter'])
+ ? htmlspecialchars($_REQUEST['delimiter'])
+ : ';'
+ )
);
?>