RT-Extension-HistoryOnChange - Show history on ticket modify page
Displays ticket history at the bottom of the the Basics page when you modify values on a ticket.
Works with RT 4.2.
perl Makefile.PL
make
make install
May need root permissions
patch /path/to/rt/share/html/Ticket/Modify.html < etc/history_on_change.diff
Not needed for RT 4.2.2 and later.
Add this line:
Set(@Plugins, qw(RT::Extension::HistoryOnChange));
or add RT::Extension::HistoryOnChange to your existing @Plugins line. Starting with RT 4.2 you can also use:
RT::Extension::HistoryOnChange
@Plugins
Plugin( "RT::Extension::HistoryOnChange" );
rm -rf /opt/rt4/var/mason_data/obj
@HistoryOnChangeTransactionTypes
By default, all history will be shown. You can limit the types of history transactions displayed with this configuration option:
Set(@HistoryOnChangeTransactionTypes, 'Create', 'Correspond');
Valid values are transaction types from the RT Transactions table. For example, Create, Correspond, and Comment would get you all messages on the ticket, but omit other transactions like added links (AddLink), status changes (Status), etc.
This option changes only the history on the Modify (Basics) page. The main ticket display history will continue to show the full history.
sunnavy <sunnavy@bestpractical.com>
All bugs should be reported via email to bug-RT-Extension-HistoryOnChange@rt.cpan.org or via the web at rt.cpan.org.
This software is Copyright 2014 Best Practical Solutions, LLC.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
To install RT::Extension::HistoryOnChange, copy and paste the appropriate command in to your terminal.
cpanm
cpanm RT::Extension::HistoryOnChange
CPAN shell
perl -MCPAN -e shell install RT::Extension::HistoryOnChange
For more information on module installation, please visit the detailed CPAN module installation guide.