diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-06-21 22:00:20 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-28 22:41:59 +0200 |
commit | a5f6efe3e79df8918292498ab042c3baf419466d (patch) | |
tree | a9574bdd347f5692d1602c3c9f9176f0a6144306 /Bugzilla/Quantum/Plugin | |
parent | e7b05770d892573ec47e70a764545ecf950fe343 (diff) | |
download | bugzilla-a5f6efe3e79df8918292498ab042c3baf419466d.tar.gz bugzilla-a5f6efe3e79df8918292498ab042c3baf419466d.tar.xz |
fix CI again
Diffstat (limited to 'Bugzilla/Quantum/Plugin')
-rw-r--r-- | Bugzilla/Quantum/Plugin/BlockIP.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/Plugin/BlockIP.pm b/Bugzilla/Quantum/Plugin/BlockIP.pm index 57f61c71f..512575b41 100644 --- a/Bugzilla/Quantum/Plugin/BlockIP.pm +++ b/Bugzilla/Quantum/Plugin/BlockIP.pm @@ -11,7 +11,7 @@ my $MEMCACHED = Bugzilla::Memcached->_new()->{memcached}; sub register { my ( $self, $app, $conf ) = @_; - $app->hook(before_routes => \&_before_routes) + $app->hook(before_routes => \&_before_routes); $app->helper(block_ip => \&_block_ip); $app->helper(unblock_ip => \&_unblock_ip); } |