Skip to content

Commit

Permalink
It's actually GB not UK
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jul 7, 2017
1 parent 1e8a113 commit 45a01a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Give a country, or a reference to a list of countries, that we will not allow to
use CGI::ACL;

# Don't allow the UK to connect to us
my $acl = CGI::ACL->new()->deny_country('UK');
my $acl = CGI::ACL->new()->deny_country('GB');

# Don't allow any countries to connect to us (a sort of 'default deny')
my $acl = CGI::ACL->new()->deny_country('*');
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/ACL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Give a country, or a reference to a list of countries, that we will not allow to
use CGI::ACL;
# Don't allow the UK to connect to us
my $acl = CGI::ACL->new()->deny_country('UK');
my $acl = CGI::ACL->new()->deny_country('GB');
# Don't allow any countries to connect to us (a sort of 'default deny')
my $acl = CGI::ACL->new()->deny_country('*');
Expand Down

0 comments on commit 45a01a5

Please sign in to comment.