Simple status box for the sidebar.
[elgg_plugins.git] / forum / config.php
blobd1f3cbc6d4f9014b409d77c48440fbdb06a938a8
1 <?php
3 //SETUP THE FORUM DEFAULT FOR YOUR ELGG SYSTEM
4 //0=All community blogs become forum UNLESS the community owner sets a flag to go back to being a community blog
5 //1=All community blogs remain community blogs UNLESS the community owner sets a flag to turn them into a forum
6 //this flag is set in the "Edit Community details" area
7 $forum_default = 0;
9 //SETUP THE FORUM SORTING ATTRIBUTES FOR YOUR ELGG SYSTEM
10 //0=Forum discussions are sorted by the date of the original post (newest thread goes at top)
11 //1=Forum discussions are sorted by the "last updated" attribute of the thread so that active discussions rise to the top of the forum...
12 //NOTE: THIS REQUIRES THE ADDITION OF A NEW FIELD IN THE weblog_posts table ("last_updated int(11) NULL ")
13 //THIS SHOULD HAPPEN AUTOMATICALLY WHEN YOU LOG IN AS "NEWS" after installing this plugin
14 //NOTE: YOU WON'T SEE ANY EFFECT OF THIS CHANGE UNTIL A THREAD IS UPDATED (weblog_post is edited, or a comment added/deleted)
16 $forum_sort = 1;