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 /db_sql.php
parentb2f3ae5fcfdd8aa881c7abf20ffccdfc583a518a (diff)
coding standard: no braces around include
Diffstat (limited to 'db_sql.php')
-rw-r--r--db_sql.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_sql.php b/db_sql.php
index 77aeef90e8..473aeda5f7 100644
--- a/db_sql.php
+++ b/db_sql.php
@@ -8,19 +8,19 @@
/**
*
*/
-require_once('./libraries/common.inc.php');
+require_once './libraries/common.inc.php';
/**
* Runs common work
*/
-require('./libraries/db_common.inc.php');
+require './libraries/db_common.inc.php';
require_once './libraries/sql_query_form.lib.php';
/**
* Gets informations about the database and, if it is empty, move to the
* "db_structure.php" script where table can be created
*/
-require('./libraries/db_info.inc.php');
+require './libraries/db_info.inc.php';
if ( $num_tables == 0 && empty( $db_query_force ) ) {
$sub_part = '';
$is_info = TRUE;