add dependancy on DBIx::SB 1.36 for Pg 8.1+
[freeside.git] / rt / lib / RT / CustomFieldValue_Overlay.pm
1 use warnings;
2 use strict;
3
4 package RT::CustomFieldValue;
5
6 no warnings qw/redefine/;
7
8
9 =head2 ValidateName
10
11 Override the default ValidateName method that stops custom field values
12 from being integers.
13
14 =cut
15
16
17 sub ValidateName { 1 };
18
19 1;