Fix bug#4710 Nav tree error after filtering the tables
Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
This commit is contained in:
parent
3c17b43454
commit
86eb4c4568
@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4719 'only_db' not working
|
||||
- bug #4700 Error text: Internal Server Error
|
||||
- bug #4722 Incorrect width table summary when favorite tables is disabled
|
||||
- bug #4710 Nav tree error after filtering the tables
|
||||
|
||||
4.3.7.0 (2015-01-15)
|
||||
- bug #4694 js error on marking table as favorite in Safari (in private mode)
|
||||
|
||||
@ -522,10 +522,15 @@ function loadChildNodes($expandElem, callback) {
|
||||
pos: $expandElem.find('span.pos').text(),
|
||||
pos2_name: $expandElem.find('span.pos2_name').text(),
|
||||
pos2_value: $expandElem.find('span.pos2_value').text(),
|
||||
searchClause: searchClause,
|
||||
searchClause2: searchClause2
|
||||
searchClause: '',
|
||||
searchClause2: ''
|
||||
};
|
||||
|
||||
if ($('#pma_navigation_tree').children().first().is('ul')) {
|
||||
params.searchClause = searchClause;
|
||||
params.searchClause2 = searchClause2;
|
||||
}
|
||||
|
||||
var url = $('#pma_navigation').find('a.navigation_url').attr('href');
|
||||
$.get(url, params, function (data) {
|
||||
if (typeof data !== 'undefined' && data.success === true) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user