return early if rule is * and remove one level of nesting

main
radnan 11 years ago
parent a92ceaf4fe
commit 7e584de9e8

@ -54,11 +54,12 @@ class NoProxyPattern
}
foreach ($this->rules as $rule) {
if ($rule == '*') {
return true;
}
$match = false;
if ($rule == '*') {
$match = true;
} else {
list($ruleHost) = explode(':', $rule);
list($base) = explode('/', $ruleHost);
@ -89,7 +90,6 @@ class NoProxyPattern
$match = false;
}
}
}
if ($match) {
return true;

Loading…
Cancel
Save