--- drupalforfirebug.module.orig 2009-02-07 12:01:48 +0300 +++ drupalforfirebug.module 2009-02-07 12:01:52 +0300 @@ -343,7 +343,7 @@ if (1 == 1) { // TODO - figure out why this is needed // Set the Proper Styling if (isset($akeys[$x]) && array_key_exists($akeys[$x], array_flip($bkeys))) { // is it in B array? - if ($a[$akeys[$x]] == $b[$akeys[$x]]) { + if ($a[$akeys[$x]] === $b[$akeys[$x]]) { $c['#firebug_style'][$akeys[$x]] = 'SAME'; } else { $c['#firebug_style'][$akeys[$x]] = 'DIFFERENT'; @@ -363,7 +363,7 @@ } } else { if (isset($akeys[$x]) && array_key_exists($akeys[$x], array_flip($bkeys))) { // is it in B array? - if ($a[$akeys[$x]] == $b[$akeys[$x]]) { + if ($a[$akeys[$x]] === $b[$akeys[$x]]) { $c[$akeys[$x]] = $a[$akeys[$x]]; } else { $c[$akeys[$x]] = $b[$akeys[$x]];