[Rt-commit] r15311 - in rt/3.8/trunk: . etc
falcone at bestpractical.com
falcone at bestpractical.com
Wed Aug 20 20:56:22 EDT 2008
Author: falcone
Date: Wed Aug 20 20:56:20 2008
New Revision: 15311
Modified:
rt/3.8/trunk/ (props changed)
rt/3.8/trunk/etc/RT_Config.pm.in
rt/3.8/trunk/share/html/Elements/MessageBox
Log:
r38701 at ketch: falcone | 2008-08-20 20:54:44 -0400
* add a config option to turn off Signature inclusion for your users
Modified: rt/3.8/trunk/etc/RT_Config.pm.in
==============================================================================
--- rt/3.8/trunk/etc/RT_Config.pm.in (original)
+++ rt/3.8/trunk/etc/RT_Config.pm.in Wed Aug 20 20:56:20 2008
@@ -840,6 +840,14 @@
Set($MessageBoxRichText, 1);
+=item C<$MessageBoxIncludeSignature>
+
+Should your user's signatures (from their Preferences page) be included in Comments and Replies
+
+=cut
+
+Set($MessageBoxIncludeSignature, 1);
+
=item C<$WikiImplicitLinks>
Support implicit links in WikiText custom fields? A true value
Modified: rt/3.8/trunk/share/html/Elements/MessageBox
==============================================================================
--- rt/3.8/trunk/share/html/Elements/MessageBox (original)
+++ rt/3.8/trunk/share/html/Elements/MessageBox Wed Aug 20 20:56:20 2008
@@ -71,5 +71,5 @@
$Width => RT->Config->Get('MessageBoxWidth', $session{'CurrentUser'} ) || 72
$Height => RT->Config->Get('MessageBoxHeight', $session{'CurrentUser'} ) || 15
$Wrap => RT->Config->Get('MessageBoxWrap') || 'HARD'
-$IncludeSignature => 1
+$IncludeSignature => RT->Config->Get('MessageBoxIncludeSignature');
</%ARGS>
More information about the Rt-commit
mailing list