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:
authorRouslan Placella <rouslan@placella.com>2011-06-16 16:11:26 +0400
committerRouslan Placella <rouslan@placella.com>2011-06-16 16:11:26 +0400
commit16185ac4f504a4f55fbca3b4dd64adbdbe2d1f7d (patch)
tree0b43df4f9b1e771f90fd68891baa8813988a89e7 /db_routines.php
parent657cbc8672939eaba5f66c1b177d61821754c6cf (diff)
Fixe whitespaces in db_routines.php
Diffstat (limited to 'db_routines.php')
-rw-r--r--db_routines.php40
1 files changed, 22 insertions, 18 deletions
diff --git a/db_routines.php b/db_routines.php
index 923f6620a1..7294e4d208 100644
--- a/db_routines.php
+++ b/db_routines.php
@@ -1,4 +1,8 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * @package phpMyAdmin
+ */
/**
* Include required files
@@ -20,21 +24,21 @@ $GLOBALS['js_include'][] = 'db_routines.js';
$titles = PMA_buildActionTitles();
if ($GLOBALS['is_ajax_request'] != true) {
- /**
- * Displays the header
- */
- require_once './libraries/db_common.inc.php';
- /**
- * Displays the tabs
- */
- require_once './libraries/db_info.inc.php';
+ /**
+ * Displays the header
+ */
+ require_once './libraries/db_common.inc.php';
+ /**
+ * Displays the tabs
+ */
+ require_once './libraries/db_info.inc.php';
} else {
- if (strlen($db)) {
- PMA_DBI_select_db($db);
- if (! isset($url_query)) {
- $url_query = PMA_generate_common_url($db);
- }
- }
+ if (strlen($db)) {
+ PMA_DBI_select_db($db);
+ if (! isset($url_query)) {
+ $url_query = PMA_generate_common_url($db);
+ }
+ }
}
/**
@@ -400,10 +404,10 @@ if ($GLOBALS['cfg']['Server']['extension'] !== 'mysqli') {
}
if ($GLOBALS['is_ajax_request'] != true) {
- /**
- * Displays the footer
- */
- require './libraries/footer.inc.php';
+ /**
+ * Displays the footer
+ */
+ require './libraries/footer.inc.php';
}
?>