[Rt-commit] r2862 - in rt/branches/3.4-RELEASE: . lib/RT
    jesse at bestpractical.com 
    jesse at bestpractical.com
       
    Wed May 11 20:06:02 EDT 2005
    
    
  
Author: jesse
Date: Wed May 11 20:06:01 2005
New Revision: 2862
Added:
   rt/branches/3.4-RELEASE/lib/RT/CustomFieldValue_Overlay.pm
Modified:
   rt/branches/3.4-RELEASE/   (props changed)
Log:
 r16461 at hualien:  jesse | 2005-05-11 15:23:33 +0100
 * Custom field values can now be integers
Added: rt/branches/3.4-RELEASE/lib/RT/CustomFieldValue_Overlay.pm
==============================================================================
--- (empty file)
+++ rt/branches/3.4-RELEASE/lib/RT/CustomFieldValue_Overlay.pm	Wed May 11 20:06:01 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