Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Przybylski <piotrprz@gmail.com>2011-06-23 01:58:02 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-06-23 01:58:02 +0400
commit9365825f52b3629820e11a963f83fe68925413f3 (patch)
tree730468063c31900259a4ee1d6dc091122a764b87 /main.php
parent3aaaf33afa218f916e3259d306acb33f054d7cfb (diff)
Hide connection collation select on home page when connected to Drizzle server
Diffstat (limited to 'main.php')
-rw-r--r--main.php28
1 files changed, 13 insertions, 15 deletions
diff --git a/main.php b/main.php
index ee203337cb..aea1e6b5f4 100644
--- a/main.php
+++ b/main.php
@@ -79,23 +79,21 @@ if ($server > 0
/**
* Displays the mysql server related links
*/
- if ($server > 0) {
+ if ($server > 0 && !PMA_DRIZZLE) {
require_once './libraries/check_user_privileges.lib.php';
- if (!PMA_DRIZZLE) {
- // Logout for advanced authentication
- if ($cfg['Server']['auth_type'] != 'config') {
- if ($cfg['ShowChgPassword']) {
- if ($GLOBALS['cfg']['AjaxEnable']) {
- $conditional_class = 'ajax';
- } else {
- $conditional_class = null;
- }
- PMA_printListItem(__('Change password'), 'li_change_password',
- './user_password.php?' . $common_url_query, null, null, 'change_password_anchor', null, $conditional_class);
+ // Logout for advanced authentication
+ if ($cfg['Server']['auth_type'] != 'config') {
+ if ($cfg['ShowChgPassword']) {
+ if ($GLOBALS['cfg']['AjaxEnable']) {
+ $conditional_class = 'ajax';
+ } else {
+ $conditional_class = null;
}
- } // end if
- } // not Drizzle
+ PMA_printListItem(__('Change password'), 'li_change_password',
+ './user_password.php?' . $common_url_query, null, null, 'change_password_anchor', null, $conditional_class);
+ }
+ } // end if
echo ' <li id="li_select_mysql_collation">';
echo ' <form method="post" action="index.php" target="_parent">' . "\n"
. PMA_generate_common_hidden_inputs(null, null, 4, 'collation_connection')
@@ -109,7 +107,7 @@ if ($server > 0
. ' <noscript><input type="submit" value="' . __('Go') . '" /></noscript>' . "\n"
. ' </form>' . "\n"
. ' </li>' . "\n";
- } // end of if ($server > 0)
+ } // end of if ($server > 0 && !PMA_DRIZZLE)
echo '</ul>';
echo '</div>';
}