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-21 22:48:30 +0400
committerMarc Delisle <marc@infomarc.info>2012-04-21 22:48:30 +0400
commit3da49e34183b972724f76b7a7ec7ce2ad4dd4f57 (patch)
tree021fdb03227ba31101beca32d3b202658496eb0e /tbl_printview.php
parent1c58314c53bb9590b5112355b486d41026aeb2f2 (diff)
Clarify variable name
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 1a64f3ea5a..60fc66f292 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -152,9 +152,9 @@ foreach ($the_tables as $key => $table) {
<tbody>
<?php
foreach ($columns as $row) {
- $extracted_fieldspec = PMA_extractColumnSpec($row['Type']);
- $type = $extracted_fieldspec['print_type'];
- $attribute = $extracted_fieldspec['attribute'];
+ $extracted_columnspec = PMA_extractColumnSpec($row['Type']);
+ $type = $extracted_columnspec['print_type'];
+ $attribute = $extracted_columnspec['attribute'];
if (! isset($row['Default'])) {
if ($row['Null'] != '' && $row['Null'] != 'NO') {