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:
authorMichal Čihař <mcihar@novell.com>2010-07-26 18:20:24 +0400
committerMichal Čihař <mcihar@novell.com>2010-07-26 18:20:24 +0400
commitd291827444206eeaf25399020ad6a3d98a5e2766 (patch)
treead3380ba8e328ff95ff7e84ddf9c79350e850eaf /db_tracking.php
parentee767e2d3d10fff9f8bf1b9cc3bf448690dbcfa0 (diff)
No need to require_once footer
It is the last thing executed anyway (ends with exit).
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_tracking.php b/db_tracking.php
index aa0d9e457d..2ff54f0ef0 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -35,7 +35,7 @@ if ($num_tables == 0 && count($data['ddlog']) == 0) {
}
// Display the footer
- require_once './libraries/footer.inc.php';
+ require './libraries/footer.inc.php';
exit;
}
@@ -199,5 +199,5 @@ if (count($data['ddlog']) > 0) {
/**
* Display the footer
*/
-require_once './libraries/footer.inc.php';
+require './libraries/footer.inc.php';
?>