diff options
author | mark <mark> | 2011-05-31 23:12:38 +0000 |
---|---|---|
committer | mark <mark> | 2011-05-31 23:12:38 +0000 |
commit | 554c6cc1ad55ea6ff3907b4eb38332fbf520fdb0 (patch) | |
tree | a93e6658d73f66329e40e68ace4d8e24b5008903 /rt/lib/RT/CustomField.pm | |
parent | 113d47ee6ca162ee0adb5bd2a74b59cc56b7f8a9 (diff) |
improve mandatory fields, #9260
Diffstat (limited to 'rt/lib/RT/CustomField.pm')
-rw-r--r-- | rt/lib/RT/CustomField.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rt/lib/RT/CustomField.pm b/rt/lib/RT/CustomField.pm index c018356b2..0582edd5b 100644 --- a/rt/lib/RT/CustomField.pm +++ b/rt/lib/RT/CustomField.pm @@ -122,7 +122,6 @@ sub Create { Disabled => '0', LinkToValue => '', IncludeContentForValue => '', - Required => '0', @_); $self->SUPER::Create( @@ -382,9 +381,6 @@ sub _CoreAccessible { {read => 1, auto => 1, sql_type => 11, length => 0, is_blob => 0, is_numeric => 0, type => 'datetime', default => ''}, Disabled => {read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'}, - Required => - {read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'}, - } }; |