Merge remote-tracking branch 'origin/QA_4_3' into QA_4_3
This commit is contained in:
commit
f032c5dd2c
@ -6,6 +6,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4744 Opening console scroll down the page
|
||||
- bug Remove extra column heading in view structure page
|
||||
- bug Add missing confirmation when deleting central columns
|
||||
- bug Undefined index DisableIS
|
||||
|
||||
4.3.9.0 (2015-02-05)
|
||||
- bug #4728 Incorrect headings in routine editor
|
||||
|
||||
@ -367,7 +367,9 @@ class Node
|
||||
$maxItems = $GLOBALS['cfg']['FirstLevelNavigationItems'];
|
||||
if ($GLOBALS['cfg']['NavigationTreeEnableGrouping']) {
|
||||
$dbSeparator = $GLOBALS['cfg']['NavigationTreeDbSeparator'];
|
||||
if (! $GLOBALS['cfg']['Server']['DisableIS']) {
|
||||
if (isset($GLOBALS['cfg']['Server']['DisableIS'])
|
||||
&& ! $GLOBALS['cfg']['Server']['DisableIS']
|
||||
) {
|
||||
$query = "SELECT `SCHEMA_NAME` ";
|
||||
$query .= "FROM `INFORMATION_SCHEMA`.`SCHEMATA`, ";
|
||||
$query .= "(";
|
||||
@ -472,7 +474,9 @@ class Node
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (! $GLOBALS['cfg']['Server']['DisableIS']) {
|
||||
if (isset($GLOBALS['cfg']['Server']['DisableIS'])
|
||||
&& ! $GLOBALS['cfg']['Server']['DisableIS']
|
||||
) {
|
||||
$query = "SELECT `SCHEMA_NAME` ";
|
||||
$query .= "FROM `INFORMATION_SCHEMA`.`SCHEMATA` ";
|
||||
$query .= $this->_getWhereClause('SCHEMA_NAME', $searchClause);
|
||||
@ -538,7 +542,9 @@ class Node
|
||||
{
|
||||
if ($GLOBALS['cfg']['NavigationTreeEnableGrouping']) {
|
||||
$dbSeparator = $GLOBALS['cfg']['NavigationTreeDbSeparator'];
|
||||
if (! $GLOBALS['cfg']['Server']['DisableIS']) {
|
||||
if (isset($GLOBALS['cfg']['Server']['DisableIS'])
|
||||
&& ! $GLOBALS['cfg']['Server']['DisableIS']
|
||||
) {
|
||||
$query = "SELECT COUNT(*) ";
|
||||
$query .= "FROM ( ";
|
||||
$query .= "SELECT DISTINCT SUBSTRING_INDEX(SCHEMA_NAME, ";
|
||||
@ -586,7 +592,9 @@ class Node
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (! $GLOBALS['cfg']['Server']['DisableIS']) {
|
||||
if (isset($GLOBALS['cfg']['Server']['DisableIS'])
|
||||
&& ! $GLOBALS['cfg']['Server']['DisableIS']
|
||||
) {
|
||||
$query = "SELECT COUNT(*) ";
|
||||
$query .= "FROM INFORMATION_SCHEMA.SCHEMATA ";
|
||||
$query .= $this->_getWhereClause('SCHEMA_NAME', $searchClause);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user