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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 13:51:41 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 13:51:41 +0400
commitadb39168cc384d7a808f836cf2e9f9585b82f864 (patch)
treeb1c9366baf0b0a405105242a90ab24908eba2342 /transformation_wrapper.php
parentb2f3ae5fcfdd8aa881c7abf20ffccdfc583a518a (diff)
coding standard: no braces around include
Diffstat (limited to 'transformation_wrapper.php')
-rw-r--r--transformation_wrapper.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/transformation_wrapper.php b/transformation_wrapper.php
index 377aea967b..1bcd43931f 100644
--- a/transformation_wrapper.php
+++ b/transformation_wrapper.php
@@ -13,15 +13,15 @@ define('IS_TRANSFORMATION_WRAPPER', true);
/**
* Gets a core script and starts output buffering work
*/
-require_once('./libraries/common.inc.php');
-require_once('./libraries/relation.lib.php'); // foreign keys
-require_once('./libraries/transformations.lib.php'); // Transformations
+require_once './libraries/common.inc.php';
+require_once './libraries/relation.lib.php'; // foreign keys
+require_once './libraries/transformations.lib.php'; // Transformations
$cfgRelation = PMA_getRelationsParam();
/**
* Ensures db and table are valid, else moves to the "parent" script
*/
-require_once('./libraries/db_table_exists.lib.php');
+require_once './libraries/db_table_exists.lib.php';
/**
@@ -59,7 +59,7 @@ if ($cfgRelation['commwork'] && $cfgRelation['mimework']) {
// to a seperate file. It can now be included by libraries/header.inc.php,
// querywindow.php.
-require_once('./libraries/header_http.inc.php');
+require_once './libraries/header_http.inc.php';
// [MIME]
if (isset($ct) && !empty($ct)) {
$content_type = 'Content-Type: ' . urldecode($ct);