mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
bug 316674, accept browser.search.order.N, r=bsmedberg
This commit is contained in:
parent
1d33739db6
commit
e6bafc8109
@ -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};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user