bug 316674, accept browser.search.order.N, r=bsmedberg

This commit is contained in:
axel%pike.org 2006-01-13 16:14:13 +00:00
parent 1d33739db6
commit e6bafc8109

View File

@ -124,7 +124,19 @@ sub compareProperties
if (exists $entities2{$entity}) {
delete $entities2{$entity};
} else {
push @extra1, $entity;
# hack around region.properties#browser.search.order.[1-9]
if ($path !~ /chrome\/browser-region\/region\.properties$/ and
$entity !~ /browser\.search\.order\.[1-9]/) {
push @extra1, $entity;
}
}
}
# hack around region.properties#browser.search.order.[1-9]
if ($path =~ /chrome\/browser-region\/region\.properties$/) {
foreach $entity (keys(%entities2)) {
if ($entity =~ /browser\.search\.order\.[1-9]/) {
delete $entities2{$entity};
}
}
}