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@suse.cz>2012-04-26 15:40:00 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-26 15:40:00 +0400
commita3d9abf0dfdbce473b9a3ae8c89ea6e220d6c88d (patch)
tree0cc765bb7efb07f4639ba31ec46ea7c46fd08f27 /tbl_change.php
parent29870761c5302472a246321ff9ad35eb8f6d11a6 (diff)
Remove no longer needed usage of data_*.inc.php
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/tbl_change.php b/tbl_change.php
index a44dfc9e58..66935f1f4b 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -19,13 +19,6 @@ require_once 'libraries/common.lib.php';
*/
require_once 'libraries/db_table_exists.lib.php';
-// load additional configuration variables
-if (PMA_DRIZZLE) {
- include_once 'libraries/data_drizzle.inc.php';
-} else {
- include_once 'libraries/data_mysql.inc.php';
-}
-
/**
* Sets global variables.
* Here it's better to use a if, instead of the '?' operator