[Rt-commit] rt branch, 4.4/quote-txn-on-ticket-forward, created. rt-4.4.3-69-ge3f0adb3c
Maureen Mirville
maureen at bestpractical.com
Mon Nov 19 15:16:48 EST 2018
The branch, 4.4/quote-txn-on-ticket-forward has been created
at e3f0adb3c75674322f894dc01f8b191ae74fe065 (commit)
- Log -----------------------------------------------------------------
commit c2c9bb1d67b71423e0feeefc35a060286fff3e00
Author: Maureen E. Mirville <maureen at bestpractical.com>
Date: Tue Aug 7 15:50:51 2018 -0400
LOCAL-siteconfig commit
diff --git a/etc/RT_SiteConfig.pm b/etc/RT_SiteConfig.pm
index 9944ebe97..660f67973 100644
--- a/etc/RT_SiteConfig.pm
+++ b/etc/RT_SiteConfig.pm
@@ -27,9 +27,20 @@ use utf8;
# after this file is loaded.
Set( $rtname, 'example.com');
+Set( $WebDomain, '127.0.0.1');
+Set( $WebPort, 8080);
+
+Set( $LogToSTDERR, 'debug');
+Set( $MailCommand, 'mbox');
+Set( $DevelMode, 1);
+Set( $RTAddressRegexp, qr/rt-(comment)?\@example.com/);
+Set( $LogToFile, 1 );
# You must install Plugins on your own, this is only an example
# of the correct syntax to use when activating them:
# Plugin( "RT::Authen::ExternalAuth" );
+Plugin('RT::Extension::ExampleTheme');
+#Set( $WebDefaultStylesheet, ('example-theme'));
+
1;
commit e3f0adb3c75674322f894dc01f8b191ae74fe065
Author: Maureen E. Mirville <maureen at bestpractical.com>
Date: Mon Nov 19 15:09:56 2018 -0500
Add quoted transaction on ticket Forward
Replying or Commenting on a ticket quotes the content of the
selected transaction. Passed ARGS to allow this same behavior when
Forwarding a ticket transaction.
diff --git a/share/html/Ticket/Forward.html b/share/html/Ticket/Forward.html
index a2467369b..bc9e277e3 100644
--- a/share/html/Ticket/Forward.html
+++ b/share/html/Ticket/Forward.html
@@ -87,9 +87,9 @@
<td><&|/l&>Content</&>:</td>
<td>
% if (exists $ARGS{Content}) {
-<& /Elements/MessageBox, Default => $ARGS{Content}, IncludeSignature => 0, SuppressAttachmentWarning => 1 &>
+<& /Elements/MessageBox, Default => $ARGS{Content}, IncludeSignature => 0, SuppressAttachmentWarning => 1, %ARGS &>
% } else {
-<& /Elements/MessageBox, SuppressAttachmentWarning => 1 &>
+<& /Elements/MessageBox, SuppressAttachmentWarning => 1, %ARGS &>
%}
</td>
</tr>
-----------------------------------------------------------------------
More information about the rt-commit
mailing list