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:
authorThilina Buddika <thilinaabeyrathna@gmail.com>2012-07-16 22:32:49 +0400
committerThilina Buddika <thilinaabeyrathna@gmail.com>2012-07-16 22:32:49 +0400
commita0db338b70345d32cd5d1eee335e0911b90d212e (patch)
tree2a99f688c538fd0b286f5b79025a59ad48941b6c /server_privileges.php
parent18459099240d67b47951175e175e97d93cf823ea (diff)
change function signature
Diffstat (limited to 'server_privileges.php')
-rw-r--r--server_privileges.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/server_privileges.php b/server_privileges.php
index 3fe8815a79..02d5ebc9c3 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -446,8 +446,8 @@ if ($GLOBALS['is_ajax_request']
if (isset($password)) {
$isPass = true;
}
- $extra_data = PMA_getExtraDataForAjaxBehavior( $isPass,
- $sql_query, $link_edit, $dbname_is_wildcard, $link_export
+ $extra_data = PMA_getExtraDataForAjaxBehavior($isPass, $link_export,
+ (isset($sql_query) ? $sql_query : ''), $link_edit, $dbname_is_wildcard
);
if ($message instanceof PMA_Message) {