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:
authorAlexander M. Turek <me@derrabus.de>2003-11-27 01:52:25 +0300
committerAlexander M. Turek <me@derrabus.de>2003-11-27 01:52:25 +0300
commit37d50c1822c9b3b8d8bd1f5cb5c8a5e74ee1d268 (patch)
tree5e5ab4998ba131ec68becf274ceb5a9be632f501 /server_collations.php
parent0500480bcfbca75c4ff16899bfda7524033f0991 (diff)
Huge set of optimizations, please test!
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/server_collations.php b/server_collations.php
index 1edbe92d1c..851de77607 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -28,15 +28,14 @@ echo '<h2>' . "\n"
*/
if (PMA_MYSQL_INT_VERSION < 40100) {
// TODO: Some nice Message :-)
- include('./footer.inc.php');
- exit;
+ require_once('./footer.inc.php');
}
/**
* Includes the required charset library
*/
-require('./libraries/mysql_charsets.lib.php');
+require_once('./libraries/mysql_charsets.lib.php');
/**
@@ -101,6 +100,6 @@ echo ' </table>' . "\n"
. ' </tr>' . "\n"
. '</table>' . "\n";
-require('./footer.inc.php');
+require_once('./footer.inc.php');
-?> \ No newline at end of file
+?>