added option to disable sub creation
parent
8fef912778
commit
6e7dff191a
|
@ -1,7 +1,8 @@
|
|||
<?php
|
||||
|
||||
// This is all the config that there is for endboard. You want more, you'll need to hack the source code (in index.php), to which your are welcome, of course.
|
||||
// If this file is not in /etc/opt/endboard/config.php, you'll need to update line 74 in index.php so that it can be found. If you can, I advise to stay with
|
||||
// This is all the config that there is for endboard. You want more, you'll need to hack the source code (in index.php, mob/index.php and opt/endboard/*.php),
|
||||
// to which your are welcome, of course.
|
||||
// If this file is not in /etc/opt/endboard/config.php, you'll need to update line 72 in index.php so that it can be found. If you can, I advise to stay with
|
||||
// the standard paths.
|
||||
// The minimum you have to edit in this file is the line saying "admin". This is neccessary to create your admin account, which will let you in turn enable
|
||||
// mod accounts. An individual title and landing page make it "your own page". If you want to change the look, you'll have to hack the stylesheets,
|
||||
|
@ -14,12 +15,13 @@ $settings = array(
|
|||
"enable_admin_panel" => TRUE, // set to true to enable access to the admin panel. Set to false if you are paranoid.
|
||||
"enable_mod_panel" => TRUE, // set to true to enable access to the moderators panel. Set to false if you are really paranoid
|
||||
// (but than you cannot moderate the board).
|
||||
"title" => 'Endboard rules', // title of page shown when the overboard is displayed
|
||||
"title" => 'Endboard rules', // title of page shown on the tab when the overboard is displayed
|
||||
"hover_title_overboard" => 'This is the overboard. It displays the collected messages from the subs in order of the posting time.',
|
||||
// the description of the overbpoard that is displayed when the users hovers on the link for the overboard
|
||||
"hover_title_main" => 'This is the main sub. Use to post important stuff and to create other subs.',
|
||||
// the description of the sub main that is displayed when the users hovers on the link.
|
||||
// the description of the overbpoard that is displayed when the users hovers on the link for the overboard
|
||||
// the description of the overbpoard that is displayed when the users hovers on the link for the overboard
|
||||
"enable_sub_creation" => TRUE, // enable users to create subs by posting in main
|
||||
"enable_logging" => TRUE, // set to FALSE to disable all logs of endboard. This will provide stricter privacy, however, it will also
|
||||
// disable the features: max_post_*, bot_block, portal, max_requests_* and fail2ban.
|
||||
"enable_sage" => TRUE, // show the option to not bump a thread
|
||||
|
|
Loading…
Reference in New Issue