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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2012-08-30 19:48:54 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2012-08-30 19:48:54 +0400
commit686dae34bb83a5d8f270c799ee8419f0fdc4284e (patch)
tree4a5150094eb133d89eb1de7c0d19600a3fa8d561 /tbl_change.php
parenta9c4a1a5e55d910d1fce215ca39b803f4b7b4017 (diff)
fix coding style : wrap long lines
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/tbl_change.php b/tbl_change.php
index ce3237db87..3c60e786db 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -343,14 +343,17 @@ foreach ($rows as $row_id => $current_row) {
$html_output .= ' <td>' . "\n";
// Will be used by js/tbl_change.js to set the default value
// for the "Continue insertion" feature
- $html_output .= '<span class="default_value hide">' . $special_chars . '</span>';
+ $html_output .= '<span class="default_value hide">'
+ . $special_chars . '</span>';
$html_output .= PMA_getValueColumn(
- $column, $backup_field, $column_name_appendix, $unnullify_trigger,$tabindex,
- $tabindex_for_value, $idindex, $data,$special_chars, $foreignData, $odd_row,
- $paramTableDbArray,$rownumber_param, $titles, $text_dir, $special_chars_encoded,
- $vkey,$is_upload, $biggest_max_file_size, $default_char_editing,
- $no_support_types, $gis_data_types, $extracted_columnspec);
+ $column, $backup_field, $column_name_appendix, $unnullify_trigger,
+ $tabindex, $tabindex_for_value, $idindex, $data, $special_chars,
+ $foreignData, $odd_row, $paramTableDbArray, $rownumber_param, $titles,
+ $text_dir, $special_chars_encoded, $vkey, $is_upload,
+ $biggest_max_file_size, $default_char_editing,
+ $no_support_types, $gis_data_types, $extracted_columnspec
+ );
$html_output .= '</td>'
. '</tr>';