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:
authorAnn + J.M <phpMyAdmin@ZweiSteinSoft.de>2014-10-22 22:05:17 +0400
committerAnn + J.M <phpMyAdmin@ZweiSteinSoft.de>2014-10-22 22:06:14 +0400
commit6feb3b0d3a8b68ea2e7fda7eebd9cdb6c7e71f64 (patch)
tree0eb177f89a9ecda28c9d7e9504bc164f23137835 /js/db_search.js
parent29ec69c849e1db90724a3c3ed62356ea5fe96a59 (diff)
Fix failing unit tests
Signed-off-by: Ann + J.M. <phpMyAdmin@ZweiSteinSoft.de>
Diffstat (limited to 'js/db_search.js')
-rw-r--r--js/db_search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/db_search.js b/js/db_search.js
index d1351b5ee0..a25b8296d2 100644
--- a/js/db_search.js
+++ b/js/db_search.js
@@ -43,7 +43,7 @@ function loadResult(result_path, table_name, link)
$('#togglequerybox').hide();
/** Load the browse results to the page */
$("#table-info").show();
- $('#table-link').attr({"href" : 'sql.php?' + link }).text(table_name);
+ $('#table-link').attr({"href" : 'sql.php' + link }).text(table_name);
var url = result_path + "#sqlqueryresults";
$.get(url, {'ajax_request': true, 'is_js_confirmed': true}, function (data) {
if (typeof data !== 'undefined' && data.success) {