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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-02-16 16:34:11 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-02-16 16:34:11 +0300
commite9c9bcc72a580e3293837ce7810ce895833d95f7 (patch)
tree4c4a7948f9b9bd0633427bd2bf9e1482233758e9 /js/makegrid.js
parentb15d9c5136099d2c28c94fd76a3550f8dc9a519f (diff)
Fix persisting column visibility to permanent storage
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/makegrid.js')
-rw-r--r--js/makegrid.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/makegrid.js b/js/makegrid.js
index d4cfa58c50..fb4a80e0ab 100644
--- a/js/makegrid.js
+++ b/js/makegrid.js
@@ -1853,7 +1853,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
// assign table create time
// table_create_time will only available if we are in "Browse" tab
- g.tableCreateTime = $(t).find('.table_create_time').val();
+ g.tableCreateTime = $(g.o).find('.table_create_time').val();
// assign the hints
g.sortHint = PMA_messages.strSortHint;