rename WebExternalAutoInfo to WebRemoteUserAutocreateInfo, #37318
[freeside.git] / rt / lib / RT / SavedSearches_Local.pm
1 # backport from RT4 RT::SharedSettings
2
3 package RT::SavedSearches;
4
5 use strict;
6 no warnings 'redefine';
7
8 sub CountAll {
9     my $self = shift;
10     return $self->Count;
11 }
12
13 sub GotoPage {
14     my $self = shift;
15     $self->{idx} = shift;
16 }
17
18 1;
19