Merge pull request #2143 from bcrowe/hotfix-extraSpace

Remove extra space around the brace in CakeSchema::_arrayDiffAssoc()
This commit is contained in:
Mark Story 2013-10-16 09:23:48 -07:00
commit 80fc94cf2a

View file

@ -551,7 +551,7 @@ class CakeSchema extends Object {
continue;
}
$correspondingValue = $array2[$key];
if (($value === null ) !== ($correspondingValue === null)) {
if (($value === null) !== ($correspondingValue === null)) {
$difference[$key] = $value;
continue;
}