The branch, master has been updated via 05d20b31daf3e6d3d3f205cc5267c288ddd3dec9 (commit) from 6c938c0f7339b7c7263e0b0e7e055254827b0b1b (commit)
- Log ----------------------------------------------------------------- commit 05d20b31daf3e6d3d3f205cc5267c288ddd3dec9 Author: Aris Feryanto aris_feryanto@yahoo.com Date: Wed May 25 20:01:16 2011 +0700
Recent tables: Additional fix for frame_navigation.PMA_reloadRecentTable() not found
-----------------------------------------------------------------------
Summary of changes: js/functions.js | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/js/functions.js b/js/functions.js index 0380a3d..c9f6112 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2288,7 +2288,9 @@ $(document).ready(function() { });
$('#update_recent_tables').ready(function() { - if (window.parent.frame_navigation != undefined) { + if (window.parent.frame_navigation != undefined + && window.parent.frame_navigation.PMA_reloadRecentTable != undefined) + { window.parent.frame_navigation.PMA_reloadRecentTable(); } });
hooks/post-receive