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>2011-05-09 20:49:05 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-09 20:49:05 +0400
commit13b31956aed38141836faf386d97c042a3087f48 (patch)
treee1cecbcf715c1dbe18cffab0eebd4dfe7257245a /tbl_printview.php
parent555c04b4a1bb91780aa21bff2b420eb6171a995d (diff)
For easier reading, replace "!isset" with "! isset"
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 74b6818e4b..f2b80abfc6 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -189,7 +189,7 @@ foreach ($the_tables as $key => $table) {
if ($zerofill) {
$attribute = 'UNSIGNED ZEROFILL';
}
- if (!isset($row['Default'])) {
+ if (! isset($row['Default'])) {
if ($row['Null'] != '' && $row['Null'] != 'NO') {
$row['Default'] = '<i>NULL</i>';
}