<?php
|
|
|
|
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
|
|
//
|
|
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
|
|
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
|
|
// $Id$
|
|
|
|
function prefs_section_list()
|
|
{
|
|
return [
|
|
'section_comments_parse' => [
|
|
'name' => tra('Parse wiki syntax in comments'),
|
|
'type' => 'flag',
|
|
'help' => 'Wiki-syntax',
|
|
'description' => tra('Parse wiki syntax in comments in all sections apart from Forums') . '<br>' .
|
|
tra('Use "Accept wiki syntax" for forums in admin forums page'),
|
|
'default' => 'y', // parse wiki markup on comments in all sections
|
|
],
|
|
];
|
|
}
|