Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
This commit is contained in:
commit
fb8adc5f00
@ -52,6 +52,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
|
||||
|
||||
@ -987,9 +987,9 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
. '\'' . PMA_Util::sqlAddSlashes($cfg['Server']['SessionTimeZone']) . '\'';
|
||||
|
||||
if(! $userlink->query($sql_query_tz)) {
|
||||
$error_message_tz = sprintf(__('Unable to use timezone %s for server %d. '
|
||||
$error_message_tz = sprintf(__('Unable to use timezone %1$s for server %2$d. '
|
||||
. 'Please check your configuration setting for '
|
||||
. '[em]$cfg[\'Servers\'][%d][\'SessionTimeZone\'][/em]. '
|
||||
. '[em]$cfg[\'Servers\'][%3$d][\'SessionTimeZone\'][/em]. '
|
||||
. 'phpMyAdmin is currently using the default time zone of the database server.'),
|
||||
$cfg['Servers'][$GLOBALS['server']]['SessionTimeZone'],
|
||||
$GLOBALS['server'],
|
||||
|
||||
@ -369,7 +369,9 @@ class Node
|
||||
if (!$GLOBALS['cfg']['NavigationTreeEnableGrouping']
|
||||
|| !$GLOBALS['cfg']['ShowDatabasesNavigationAsTree']
|
||||
) {
|
||||
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);
|
||||
@ -426,7 +428,9 @@ class Node
|
||||
}
|
||||
|
||||
$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 .= "(";
|
||||
@ -558,7 +562,9 @@ class Node
|
||||
if (!$GLOBALS['cfg']['NavigationTreeEnableGrouping']
|
||||
|| !$GLOBALS['cfg']['ShowDatabasesNavigationAsTree']
|
||||
) {
|
||||
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);
|
||||
|
||||
968
po/be@latin.po
968
po/be@latin.po
File diff suppressed because it is too large
Load Diff
976
po/en_GB.po
976
po/en_GB.po
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
988
po/pt_BR.po
988
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
975
po/sr@latin.po
975
po/sr@latin.po
File diff suppressed because it is too large
Load Diff
974
po/uz@latin.po
974
po/uz@latin.po
File diff suppressed because it is too large
Load Diff
976
po/zh_CN.po
976
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
976
po/zh_TW.po
976
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user