Skip to content
Snippets Groups Projects
Commit 5130331c authored by Thomas Sibley's avatar Thomas Sibley
Browse files

Shred ObjectCustomFields when shredding a custom field

parent 800c568d
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,11 @@ sub __DependsOn
# Custom field values
push( @$list, $self->Values );
# Applications of this CF
my $applied = RT::ObjectCustomFields->new( $self->CurrentUser );
$applied->LimitToCustomField( $self->Id );
push @$list, $applied;
# Ticket custom field values
my $objs = RT::ObjectCustomFieldValues->new( $self->CurrentUser );
$objs->LimitToCustomField( $self->Id );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment