
falcone at bestpractical
May 7, 2008, 9:45 AM
Post #1 of 1
(35 views)
Permalink
|
|
r12134 - in rt/branches/3.8-TESTING: etc
|
|
Author: falcone Date: Wed May 7 12:45:17 2008 New Revision: 12134 Modified: rt/branches/3.8-TESTING/ (props changed) rt/branches/3.8-TESTING/etc/RT_Config.pm.in Log: r32246[at]ketch: falcone | 2008-05-07 12:43:42 -0400 * if you have the GraphViz module, set DisabledGraphViz to 0 if you *don't* have the module, make sure its disabled Modified: rt/branches/3.8-TESTING/etc/RT_Config.pm.in ============================================================================== --- rt/branches/3.8-TESTING/etc/RT_Config.pm.in (original) +++ rt/branches/3.8-TESTING/etc/RT_Config.pm.in Wed May 7 12:45:17 2008 @@ -738,7 +738,7 @@ Set($DevelMode, '@RT_DEVEL_MODE@'); -Set($DisableGraphViz, do { local $@; eval {require GraphViz; 1;} ? 1 : 0 } ); +Set($DisableGraphViz, do { local $@; eval {require GraphViz; 1;} ? 0 : 1 } ); # }}} _______________________________________________ Rt-commit mailing list Rt-commit[at]lists.bestpractical.com http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|