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:
authorRouslan Placella <rouslan@placella.com>2011-10-31 00:44:23 +0400
committerRouslan Placella <rouslan@placella.com>2011-10-31 00:44:23 +0400
commit8812aeb7e25476313b9c07a90bebdf586a0dd443 (patch)
tree00e9696fdce91b23be8889466fa25f026a448fc9 /js/db_search.js
parent2a14fdec556a78a5682f57625611831f381c63e2 (diff)
Fixed initialisation of makegrid in database search results
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 d3e39fdf74..d78729088d 100644
--- a/js/db_search.js
+++ b/js/db_search.js
@@ -45,7 +45,7 @@ function loadResult(result_path, table_name, link, ajaxEnable)
// because under db_search, window.parent.table is not defined yet,
// we assign it manually from #table-link
window.parent.table = $('#table-link').text().trim();
- $('#table_results').makegrid();
+ PMA_makegrid($('#table_results')[0], true, true, true, true);
}).show();
} else {
event.preventDefault();