comment out the ip filter from clientCheck (in Session::Env)

added form validation to AdSku ( with internationalized messages )
This commit is contained in:
David Delikat 2009-04-06 04:34:32 +00:00
parent a6a70a46e0
commit 9d0f7869b3
3 changed files with 97 additions and 16 deletions

View file

@ -173,8 +173,11 @@ returns true is the client/agent is a spider/indexer or some other non-human int
sub requestNotViewed {
my $self = shift;
return $self->clientIsSpider()
|| $self->callerIsSearchSite();
return $self->clientIsSpider();
# || $self->callerIsSearchSite(); # this part is currently left out because
# it has minimal effect and does not manage
# IPv6 addresses. it may be useful in the
# future though
}