1f0fda08aSwikidesign<?php 2f0fda08aSwikidesign/** 3f0fda08aSwikidesign * Options for the discussion plugin 4f0fda08aSwikidesign */ 5f0fda08aSwikidesign 6479dd10fSwikidesign$conf['automatic'] = 0; // discussion section on every page by default 7*f0bcde18SGerrit Uitslag$conf['excluded_ns'] = ''; // list of namespaces to revert the option above (a regular expression) 8f0fda08aSwikidesign$conf['allowguests'] = 1; // should unregistred users be able to comment? 97d091ad1SMichael Klier$conf['showguests'] = 1; // show/hide comments from guests 10f0fda08aSwikidesign$conf['linkemail'] = 0; // link usernames with e-mail addresses 11035d400bSwikidesign$conf['useavatar'] = 1; // use Avatar Plugin to display user images in comments 12f0fda08aSwikidesign$conf['urlfield'] = 0; // allow entering an URL 13f0fda08aSwikidesign$conf['addressfield'] = 0; // allow entering an address 141ba72c23Swikidesign$conf['adminimport'] = 0; // allow admins to set all the fields for import 15035d400bSwikidesign$conf['usecocomment'] = 0; // use coComment comment tracking 16f0fda08aSwikidesign$conf['wikisyntaxok'] = 1; // allow wiki syntax in comments 17a43e61cfSMichael Klier$conf['subscribe'] = 1; // enable/disable subscribe to comments 18dbd9d5cdSMichael Klier$conf['newestfirst'] = 0; // list newest comments first 19a44bc9f7SMichael Klier$conf['moderate'] = 0; // moderate newly added comments 2031aab30eSGina Haeussge$conf['usethreading'] = 1; 210ff5ab97SMichael Klier$conf['userealname'] = 1; 22cc497149Swikidesign$conf['threads_formposition'] = 'bottom'; // position of new thread form 2346178401Slupo49$conf['visibilityButton'] = 0; // show/hide button to hide the discussion section 24e6b2f142Slupo49$conf['moderatorgroups'] = ''; 2546178401Slupo49 26f0fda08aSwikidesign//Setup VIM: ex: et ts=2 enc=utf-8 : 27