Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
coding standards elseif
  • Loading branch information
euromark committed Jun 9, 2013
1 parent e5b1182 commit f6aedea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Utility/Debugger.php
Expand Up @@ -550,7 +550,7 @@ protected static function _array(array $var, $depth, $indent) {
// Sniff for globals as !== explodes in < 5.4
if ($key === 'GLOBALS' && is_array($val) && isset($val['GLOBALS'])) {
$val = '[recursion]';
} else if ($val !== $var) {
} elseif ($val !== $var) {
$val = self::_export($val, $depth, $indent);
}
$vars[] = $break . self::exportVar($key) .
Expand Down

0 comments on commit f6aedea

Please sign in to comment.