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_replace.php
parent555c04b4a1bb91780aa21bff2b420eb6171a995d (diff)
For easier reading, replace "!isset" with "! isset"
Diffstat (limited to 'tbl_replace.php')
-rw-r--r--tbl_replace.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_replace.php b/tbl_replace.php
index 40d0ad48d6..5b722c69c9 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -276,7 +276,7 @@ foreach ($loop_array as $rownumber => $where_clause) {
// u p d a t e
} elseif (!empty($me_fields_null_prev[$key])
- && !isset($me_fields_null[$key])) {
+ && ! isset($me_fields_null[$key])) {
// field had the null checkbox before the update
// field no longer has the null checkbox
$query_values[] = PMA_backquote($me_fields_name[$key]) . ' = ' . $cur_value;