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>2011-08-04 18:26:03 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-04 18:26:03 +0400
commite86a65d0c2d0bcefec6b4eb15ca81578d0b7004e (patch)
tree268452e8a475bd40a02a9cd1daf9e1680a169bb2 /tbl_relation.php
parent183c0f437b87d01e155602ed5a724b860465d7de (diff)
Whitespace cleanup
Diffstat (limited to 'tbl_relation.php')
-rw-r--r--tbl_relation.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tbl_relation.php b/tbl_relation.php
index e204c80893..ad6de0be99 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -72,9 +72,9 @@ function PMA_generate_dropdown($dropdown_question, $select_name, $choices, $sele
}
/**
- * Split a string on backquote pairs
+ * Split a string on backquote pairs
*
- * @param string original string
+ * @param string original string
* @return array containing the elements (and their surrounding backquotes)
*
* @access public
@@ -97,7 +97,7 @@ function PMA_backquote_split($text)
}
$elements[] = substr($text, $first_backquote, $second_backquote - $first_backquote + 1);
$pos = $second_backquote + 1;
- }
+ }
return($elements);
}
@@ -376,7 +376,7 @@ if ($cfgRelation['relwork'] || PMA_foreignkey_supported($tbl_type)) {
&& isset($curr_table[1])
&& strtoupper($curr_table[1]) == $tbl_type) {
// explicitely ask for non-quoted list of indexed columns
- // need to obtain backquoted values to support dots inside values
+ // need to obtain backquoted values to support dots inside values
$selectboxall_foreign = array_merge($selectboxall_foreign, $current_table->getIndexedColumns($backquoted = true));
}
} // end while over tables
@@ -506,9 +506,9 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
</span>
<span class="formelement">
<?php
- // For ON DELETE and ON UPDATE, the default action
+ // For ON DELETE and ON UPDATE, the default action
// is RESTRICT as per MySQL doc; however, a SHOW CREATE TABLE
- // won't display the clause if it's set as RESTRICT.
+ // won't display the clause if it's set as RESTRICT.
PMA_generate_dropdown('ON DELETE',
'on_delete[' . $myfield_md5 . ']',
$options_array,