remove duplicate field ids
This commit is contained in:
6
main.php
6
main.php
@@ -84,14 +84,14 @@ if ($server > 0) {
|
||||
echo '<ul>' . "\n";
|
||||
|
||||
if ($GLOBALS['cfg']['ShowServerInfo']) {
|
||||
PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_info');
|
||||
PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
|
||||
PMA_printListItem($strProtocolVersion . ': ' . PMA_DBI_get_proto_info(),
|
||||
'li_mysql_proto');
|
||||
PMA_printListItem($strServer . ': ' . $server_info, 'li_server_info');
|
||||
PMA_printListItem($strUser . ': ' . htmlspecialchars($mysql_cur_user_and_host),
|
||||
'li_user_info');
|
||||
} else {
|
||||
PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_info');
|
||||
PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
|
||||
PMA_printListItem($strServer . ': ' . $server_info, 'li_server_info');
|
||||
}
|
||||
|
||||
@@ -289,7 +289,7 @@ echo '<li id="li_select_fontsize">';
|
||||
echo PMA_Config::getFontsizeForm();
|
||||
echo '</li>';
|
||||
PMA_printListItem($strPmaDocumentation, 'li_pma_docs', 'Documentation.html', null, '_blank');
|
||||
PMA_printListItem($strPmaWiki, 'li_pma_docs', 'http://wiki.cihar.com', null, '_blank');
|
||||
PMA_printListItem($strPmaWiki, 'li_pma_wiki', 'http://wiki.cihar.com', null, '_blank');
|
||||
|
||||
if ($cfg['ShowPhpInfo']) {
|
||||
PMA_printListItem($strShowPHPInfo, 'li_phpinfo', './phpinfo.php?' . $common_url_query);
|
||||
|
@@ -564,6 +564,10 @@ li#li_server_info{
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
|
||||
}
|
||||
|
||||
li#li_server_version{
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
|
||||
}
|
||||
|
||||
li#li_user_info{
|
||||
/* list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_rights.png); */
|
||||
}
|
||||
@@ -616,6 +620,10 @@ li#li_pma_docs {
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/b_docs.png);
|
||||
}
|
||||
|
||||
li#li_pma_wiki {
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/b_docs.png);
|
||||
}
|
||||
|
||||
li#li_phpinfo {
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/php_sym.png);
|
||||
}
|
||||
|
@@ -1009,6 +1009,10 @@ li#li_server_info{
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_server_version{
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_user_info{
|
||||
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
}
|
||||
@@ -1061,6 +1065,10 @@ li#li_pma_docs {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_pma_wiki {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_phpinfo {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
}
|
||||
|
@@ -957,6 +957,10 @@ li#li_server_info{
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_server_version{
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_user_info{
|
||||
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
}
|
||||
@@ -1009,6 +1013,10 @@ li#li_pma_docs {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_pma_wiki {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_phpinfo {
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
}
|
||||
|
Reference in New Issue
Block a user