fix TeleAPI import (what kind of crack was Christopher smoking that he couldn't fix...
[freeside.git] / FS / FS / AuthCookieHandler24.pm
1 package FS::AuthCookieHandler24;
2 use base qw( FS::AuthCookieHandler );
3
4 use strict;
5
6 #Apache 2.4+ / Apache2::AuthCookie 3.19+
7 sub useragent_ip {
8   my( $self, $r ) = @_;
9   $r->useragent_ip;
10 }
11
12 1;