patch #1502453, unnecessary disc access
This commit is contained in:
@@ -8,6 +8,9 @@ $Source$
|
|||||||
2006-06-09 Marc Delisle <lem9@users.sourceforge.net>
|
2006-06-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_select.php: bug #1490569, search with LIKE on numeric fields
|
* tbl_select.php: bug #1490569, search with LIKE on numeric fields
|
||||||
* libraries/import.lib.php: support display of HANDLER statement results
|
* libraries/import.lib.php: support display of HANDLER statement results
|
||||||
|
* libraries/header.inc.php, libraries/auth/http.auth.lib.php,
|
||||||
|
/cookie.auth.lib.php, removed header_custom.inc.php:
|
||||||
|
patch #1502453, unnecessary disk access, thanks to Juergen Wind
|
||||||
|
|
||||||
2006-06-08 Marc Delisle <lem9@users.sourceforge.net>
|
2006-06-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/header.inc.php: bug #1501891, undefined PMA_isSuperuser() when
|
* libraries/header.inc.php: bug #1501891, undefined PMA_isSuperuser() when
|
||||||
|
@@ -100,7 +100,10 @@ if (top != self) {
|
|||||||
|
|
||||||
<body class="loginform">
|
<body class="loginform">
|
||||||
|
|
||||||
<?php require './libraries/header_custom.inc.php'; ?>
|
<?php if (file_exists('./config.header.inc.php')) {
|
||||||
|
require('./config.header.inc.php');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a href="http://www.phpmyadmin.net" target="_blank" class="logo"><?php
|
<a href="http://www.phpmyadmin.net" target="_blank" class="logo"><?php
|
||||||
|
@@ -33,7 +33,10 @@ function PMA_auth() {
|
|||||||
?>
|
?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php require './libraries/header_custom.inc.php'; ?>
|
<?php if (file_exists('./config.header.inc.php')) {
|
||||||
|
require('./config.header.inc.php');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<center>
|
<center>
|
||||||
|
@@ -1,11 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* $Id$ */
|
|
||||||
// vim: expandtab sw=4 ts=4 sts=4:
|
|
||||||
|
|
||||||
// This file includes all custom headers if they exist.
|
|
||||||
|
|
||||||
// Include site header
|
|
||||||
if (file_exists('./config.header.inc.php')) {
|
|
||||||
require('./config.header.inc.php');
|
|
||||||
}
|
|
||||||
?>
|
|
Reference in New Issue
Block a user