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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:41:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:41:41 +0400
commit13adb5adf7e2b429819a85131edd998b34726ad7 (patch)
tree85704a296ba153690710f4eee4fb5ca063f914a5 /import.php
parent9bcb83af03d9f988a2e2c754e6b9b3cf2c468555 (diff)
Use lower case for true, false and null
Diffstat (limited to 'import.php')
-rw-r--r--import.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/import.php b/import.php
index d3c4b79313..fab1d3f3b2 100644
--- a/import.php
+++ b/import.php
@@ -395,7 +395,7 @@ if (!$error) {
}
}
-if (! $error && false !== $import_handle && NULL !== $import_handle) {
+if (! $error && false !== $import_handle && null !== $import_handle) {
fclose($import_handle);
}