Correcting code structure to standards

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5315 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-06-20 07:51:52 +00:00
parent 20dfa51702
commit dac1bd0913
42 changed files with 169 additions and 169 deletions

View file

@ -486,7 +486,7 @@ class Set extends Object {
foreach ($val1 as $key => $val) {
if (isset($val2[$key]) && $val2[$key] != $val) {
$out[$key] = $val;
} elseif (!array_key_exists($key, $val2)){
} elseif (!array_key_exists($key, $val2)) {
$out[$key] = $val;
}
}