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 /tbl_printview.php
parent0500480bcfbca75c4ff16899bfda7524033f0991 (diff)
Huge set of optimizations, please test!
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index b5de87e47e..280f78c4da 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -6,8 +6,8 @@
* Gets the variables sent or posted to this script, then displays headers
*/
if (!isset($selected_tbl)) {
- include('./libraries/grab_globals.lib.php');
- include('./header.inc.php');
+ require_once('./libraries/grab_globals.lib.php');
+ require_once('./header.inc.php');
}
// Check parameters
@@ -19,8 +19,8 @@ if (!isset($the_tables) || !is_array($the_tables)) {
/**
* Gets the relations settings
*/
-require('./libraries/relation.lib.php');
-require('./libraries/transformations.lib.php');
+require_once('./libraries/relation.lib.php');
+require_once('./libraries/transformations.lib.php');
$cfgRelation = PMA_getRelationsParam();
@@ -632,5 +632,5 @@ function printPage()
<?php
echo '<br /><br />&nbsp;<input type="button" style="visibility: ; width: 100px; height: 25px" id="print" value="' . $strPrint . '" onclick="printPage()">' . "\n";
-require('./footer.inc.php');
+require_once('./footer.inc.php');
?>