[Rt-commit] r2868 - in rt/branches/QUEBEC-EXPERIMENTAL: . lib/RT
jesse at bestpractical.com
jesse at bestpractical.com
Wed May 11 20:08:56 EDT 2005
Author: jesse
Date: Wed May 11 20:08:56 2005
New Revision: 2868
Added:
rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/CustomFieldValue_Overlay.pm
Modified:
rt/branches/QUEBEC-EXPERIMENTAL/ (props changed)
Log:
r16466 at hualien: jesse | 2005-05-11 15:31:43 +0100
r16461 at hualien: jesse | 2005-05-11 10:23:33 -0400
* Custom field values can now be integers
Added: rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/CustomFieldValue_Overlay.pm
==============================================================================
--- (empty file)
+++ rt/branches/QUEBEC-EXPERIMENTAL/lib/RT/CustomFieldValue_Overlay.pm Wed May 11 20:08:56 2005
@@ -0,0 +1,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 };
+
+
More information about the Rt-commit
mailing list