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:
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');
?>