Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/phpmyadmin/phpmyadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
amarin15 committed Jun 29, 2012
2 parents dd2cf47 + 79925de commit b1b674a
Show file tree
Hide file tree
Showing 6 changed files with 489 additions and 156 deletions.
4 changes: 2 additions & 2 deletions libraries/Menu.class.php
Expand Up @@ -425,7 +425,7 @@ private function _getServerTabs()
{
$is_superuser = PMA_isSuperuser();
$binary_logs = null;
if (! PMA_DRIZZLE) {
if (!defined('PMA_DRIZZLE') || (defined('PMA_DRIZZLE') && ! PMA_DRIZZLE)) {
$binary_logs = PMA_DBI_fetch_result(
'SHOW MASTER LOGS',
'Log_name',
Expand Down Expand Up @@ -495,7 +495,7 @@ private function _getServerTabs()
$tabs['charset']['link'] = 'server_collations.php';
$tabs['charset']['text'] = __('Charsets');

if (PMA_DRIZZLE) {
if (defined('PMA_DRIZZLE') && PMA_DRIZZLE) {
$tabs['plugins']['icon'] = 'b_engine.png';
$tabs['plugins']['link'] = 'server_plugins.php';
$tabs['plugins']['text'] = __('Plugins');
Expand Down

0 comments on commit b1b674a

Please sign in to comment.