From: Ivan Kohler Date: Tue, 17 Jul 2018 01:41:56 +0000 (-0700) Subject: harmless, but don't do a string comparison on numbers anyway, RT#79825 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=25b3db5f07ae23cf0c39dbb77b955687eca14cf4 harmless, but don't do a string comparison on numbers anyway, RT#79825 --- diff --git a/FS/FS/svc_IP_Mixin.pm b/FS/FS/svc_IP_Mixin.pm index c89245fe2..d28261141 100644 --- a/FS/FS/svc_IP_Mixin.pm +++ b/FS/FS/svc_IP_Mixin.pm @@ -80,7 +80,7 @@ sub svc_ip_check { my $error = $self->ip_check; return $error if $error; if ( my $router = $self->router ) { - if ( grep { $_->routernum eq $router->routernum } $self->allowed_routers ) { + if ( grep { $_->routernum == $router->routernum } $self->allowed_routers ) { return ''; } else { return 'Router '.$router->routername.' not available for this service';