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:
authorninadsp <ninadsp16289@gmail.com>2010-07-29 17:47:25 +0400
committerninadsp <ninadsp16289@gmail.com>2010-07-29 17:47:25 +0400
commita2f78a6d38f74f0cc62f2a5837e682901331c21e (patch)
treeceab0c3ae4efe05fe345f270bdf4d236d24ef63d /db_tracking.php
parent2bec345a46d11293b93c2b06bf8009c913cde8fb (diff)
parentd0fc397fe1c474150883e85a791a012a7ae03380 (diff)
Resolve merge conflicts for upstream merge
Diffstat (limited to 'db_tracking.php')
-rwxr-xr-xdb_tracking.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 8ecfb96911..d4a15b00a2 100755
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -8,7 +8,6 @@
* Run common work
*/
require_once './libraries/common.inc.php';
-require_once './libraries/Table.class.php';
//Get some js files needed for Ajax
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
@@ -22,9 +21,6 @@ $url_query .= '&amp;goto=tbl_tracking.php&amp;back=db_tracking.php';
$sub_part = '_structure';
require './libraries/db_info.inc.php';
-// Get relation settings
-require_once './libraries/relation.lib.php';
-
// Work to do?
// (here, do not use $_REQUEST['db] as it can be crafted)
if (isset($_REQUEST['delete_tracking']) && isset($_REQUEST['table'])) {
@@ -48,7 +44,7 @@ if ($num_tables == 0 && count($data['ddlog']) == 0) {
}
// Display the footer
- require_once './libraries/footer.inc.php';
+ require './libraries/footer.inc.php';
exit;
}
@@ -212,5 +208,5 @@ if (count($data['ddlog']) > 0) {
/**
* Display the footer
*/
-require_once './libraries/footer.inc.php';
+require './libraries/footer.inc.php';
?>