summaryrefslogtreecommitdiff
path: root/lib/schema.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-10-13 16:56:49 -0700
committerBrion Vibber <brion@pobox.com>2010-10-13 16:56:49 -0700
commit4f4b0a26128ebee13439ea1ce5f0063b502e301e (patch)
tree907c7a8fc66b9358c23e0dfa2d1aaf9654572f14 /lib/schema.php
parent0de3661d57c3e41212df1e95b76ddde596647a83 (diff)
logic fix in diffing :D
Diffstat (limited to 'lib/schema.php')
-rw-r--r--lib/schema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/schema.php b/lib/schema.php
index f42226bad..2793906a4 100644
--- a/lib/schema.php
+++ b/lib/schema.php
@@ -555,7 +555,7 @@ class Schema
if ($compareCallback) {
$same = call_user_func($compareCallback, $old[$name], $new[$name]);
} else {
- $same = ($old[$name] != $new[$name]);
+ $same = ($old[$name] == $new[$name]);
}
if ($same) {
$tokeep[] = $name;