summaryrefslogtreecommitdiff
path: root/rt/lib/RT/CustomFieldValue_Overlay.pm
blob: 322e58b1f84cbd3da0957d9feb22b77608fe43bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use warnings;
use strict;

package RT::CustomFieldValue;

no warnings qw/redefine/;


=head2 ValidateName

Override the default ValidateName method that stops custom field values
from being integers.

=cut


sub ValidateName { 1 };

1;