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 /chk_rel.php
parent0500480bcfbca75c4ff16899bfda7524033f0991 (diff)
Huge set of optimizations, please test!
Diffstat (limited to 'chk_rel.php')
-rw-r--r--chk_rel.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/chk_rel.php b/chk_rel.php
index 206af9d7f4..57707a0e29 100644
--- a/chk_rel.php
+++ b/chk_rel.php
@@ -6,10 +6,10 @@
/**
* Gets some core libraries
*/
-require('./libraries/grab_globals.lib.php');
-require('./libraries/common.lib.php');
-require('./db_details_common.php');
-require('./libraries/relation.lib.php');
+require_once('./libraries/grab_globals.lib.php');
+require_once('./libraries/common.lib.php');
+require_once('./db_details_common.php');
+require_once('./libraries/relation.lib.php');
/**
@@ -21,6 +21,5 @@ $cfgRelation = PMA_getRelationsParam(TRUE);
/**
* Displays the footer
*/
-echo "\n";
-require('./footer.inc.php');
-?> \ No newline at end of file
+require_once('./footer.inc.php');
+?>