We are altering Output and Modules framework files for our new install of 3.1.7 and are trying to use the Custom folder to prevent future difficulties during minor patches. However, the updated configurations found in the Custom folder files are not being reflected in the live environment. Are we missing something that activates or otherwise directs OTRS to present the files in the Custom directories instead of the standard ones?
For instance, we have copied otrs/Kernel/Output/HTML/LayoutTicket.pm to otrs/Custom/Kernel/Output/HTML/LayoutTicket.pm with the alteration:
Code: Select all
# show priority
push @Result, {
# Image => $Image,
Title => $Param{Ticket}->{Priority},
Class => 'Flag',
ClassSpan => 'PriorityID-' . $Param{Ticket}->{PriorityID},
ClassTable => 'Flags',
};
Code: Select all
# show priority
push @Result, {
# Image => $Image,
Title => $Param{Ticket}->{Priority},
Class => '',
ClassSpan => 'PriorityID-' . $Param{Ticket}->{PriorityID},
ClassTable => 'Flags',
};
How can we leave the standard framework file in its original format and have the Custom folder file reflect in the live environment?