From 4f4b0a26128ebee13439ea1ce5f0063b502e301e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 13 Oct 2010 16:56:49 -0700 Subject: [PATCH] logic fix in diffing :D --- lib/schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/schema.php b/lib/schema.php index f42226bad3..2793906a46 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;