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:
authorMarc Delisle <marc@infomarc.info>2012-04-03 15:46:06 +0400
committerMarc Delisle <marc@infomarc.info>2012-04-03 15:46:06 +0400
commit8696766bd974258e2dee36fda549152fc92f7c91 (patch)
tree6f69a6b6ad2ad2c4c0d6299c972ad1a7c42d856c /tbl_change.php
parent5c24ecdc929d2897dfb6082314950629946959da (diff)
ChangeLog entry
Cosmetic cleanup
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tbl_change.php b/tbl_change.php
index 7ea6995423..37b0784748 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -376,7 +376,7 @@ foreach ($rows as $row_id => $vrow) {
<?php
// Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
$m_rows = $o_rows + 1;
- //store the default value foe CharEditing
+ //store the default value for CharEditing
$default_char_editing = $cfg['CharEditing'];
$odd_row = true;
@@ -950,10 +950,10 @@ foreach ($rows as $row_id => $vrow) {
// ignore this column to avoid changing it
if ($field['is_char']) {
$fieldsize = $extracted_fieldspec['spec_in_brackets'];
- if($fieldsize > $cfg['MaxSizeForInputField']) {
+ if ($fieldsize > $cfg['MaxSizeForInputField']) {
/**
- * This case happens for CHAR or VARCHAR field which has
- * lager field size than Maximum size for input field.
+ * This case happens for CHAR or VARCHAR columns which have
+ * a size larger than the maximum size for input field.
*/
$cfg['CharEditing'] = 'textarea';
}