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 15:02:46 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 15:02:46 +0400
commitcfeb30652642d995bb0c8d17988d33d11b02318f (patch)
tree33fec5cdc925d60888ee67c32dbfc0422c6bc29a /db_qbe.php
parentadb39168cc384d7a808f836cf2e9f9585b82f864 (diff)
coding standard: no spaces inside braces
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_qbe.php b/db_qbe.php
index 996e9d2a5a..68f42f275a 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -178,7 +178,7 @@ function showColumnSelectCell($columns, $column_number, $selected = '')
$z = 0;
for ($x = 0; $x < $col; $x++) {
if (isset($ins_col[$x]) && $ins_col[$x] == 'on') {
- showColumnSelectCell( $fld, $z );
+ showColumnSelectCell($fld, $z);
$z++;
}
@@ -733,7 +733,7 @@ if (isset($Field) && count($Field) > 0) {
$master = key($tab_wher);
} else {
// Now let's find out which of the tables has an index
- // ( When the control user is the same as the normal user
+ // (When the control user is the same as the normal user
// because he is using one of his databases as pmadb,
// the last db selected is not always the one where we need to work)
PMA_DBI_select_db($db);
@@ -806,7 +806,7 @@ if (isset($Field) && count($Field) > 0) {
// Of course we only want to check each table once
$checked_tables = $col_cand;
foreach ($col_cand AS $tab) {
- if ($checked_tables[$tab] != 1 ) {
+ if ($checked_tables[$tab] != 1) {
$tsize[$tab] = PMA_Table::countRecords($db, $tab, true, false);
$checked_tables[$tab] = 1;
}