remove version info on cookie login screen

This commit is contained in:
Marc Delisle
2008-07-15 14:14:09 +00:00
parent afb3903291
commit c221da970d
2 changed files with 3 additions and 3 deletions

View File

@@ -21,6 +21,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1959855 [interface] Font size option problem when no config file - bug #1959855 [interface] Font size option problem when no config file
- bug #1982489 [relation] Relationship view should check for changes - bug #1982489 [relation] Relationship view should check for changes
- bug [history] Do not save too big queries in history - bug [history] Do not save too big queries in history
- [security] Do not show version info on login screen
2.11.7.0 (2008-06-23) 2.11.7.0 (2008-06-23)
- bug #1908719 [interface] New field cannot be auto-increment and primary key - bug #1908719 [interface] New field cannot be auto-increment and primary key

View File

@@ -67,7 +67,6 @@ if (function_exists('mcrypt_encrypt') || PMA_dl('mcrypt')) {
* @uses PMA_sendHeaderLocation() * @uses PMA_sendHeaderLocation()
* @uses PMA_select_language() * @uses PMA_select_language()
* @uses PMA_select_server() * @uses PMA_select_server()
* @uses PMA_VERSION
* @uses file_exists() * @uses file_exists()
* @uses sprintf() * @uses sprintf()
* @uses count() * @uses count()
@@ -106,8 +105,8 @@ function PMA_auth()
// Defines the "item" image depending on text direction // Defines the "item" image depending on text direction
$item_img = $GLOBALS['pmaThemeImage'] . 'item_' . $GLOBALS['text_dir'] . '.png'; $item_img = $GLOBALS['pmaThemeImage'] . 'item_' . $GLOBALS['text_dir'] . '.png';
/* HTML header */ /* HTML header; do not show here the PMA version to improve security */
$page_title = 'phpMyAdmin ' . PMA_VERSION; $page_title = 'phpMyAdmin ';
require './libraries/header_meta_style.inc.php'; require './libraries/header_meta_style.inc.php';
?> ?>
<script type="text/javascript"> <script type="text/javascript">