by Pascal » Feb 16 06 7:34 pm
Refer to your other post on blocking people. Filters are treated as OR statements. So, Filter1 OR Filter2 must be true for the right to be granted. Conditions within a Filter are AND statements, so Condition1 AND Condition2 within Filter1 must be true for the right to be granted.
In your case this would have read as:
If the HTTP URL did not contain "darude" OR if the HTTP URL did not contain "bigtimegals" the right is granted.
When you visited "darude" the second Filter would have been true (The HTTP URL does not contain "bigtimegals") and the right would have been granted. When you visited "bigtimegals" the first Filter would have been true (The HTTP URL does not contain "darude") and the right would have been granted.
So not a bug, by design. It's just a case of how you structure them then.