[Rt-commit] r15259 - in rtfm/trunk: .
falcone at bestpractical.com
falcone at bestpractical.com
Tue Aug 19 20:54:33 EDT 2008
Author: falcone
Date: Tue Aug 19 20:54:32 2008
New Revision: 15259
Added:
rtfm/trunk/etc/RTFM_Config.pm
Modified:
rtfm/trunk/ (props changed)
Log:
r38612 at ketch: falcone | 2008-08-19 20:51:45 -0400
* create an RTFM_Config.pm for our one config option now that
our plugin infrastructure supports it
Added: rtfm/trunk/etc/RTFM_Config.pm
==============================================================================
--- (empty file)
+++ rtfm/trunk/etc/RTFM_Config.pm Tue Aug 19 20:54:32 2008
@@ -0,0 +1,18 @@
+# This module is intended to be used to set RTFM options.
+# It is loaded after RT_Config.pm
+#
+# This file is actually a perl module, so you can include valid
+# perl code, as well.
+#
+# The converse is also true, if this file isn't valid perl, you're
+# going to run into trouble. To check your SiteConfig file, use
+# this comamnd:
+#
+# perl -c /path/to/your/etc/RTFM_Config.pm
+
+#, Set this to 1 to display the RTFM interface on the Ticket Create page
+# in addition to the Reply/Comment page
+
+Set($RTFM_TicketCreate, 0);
+
+1;
More information about the Rt-commit
mailing list