| Changes comparision: 2.0 RC1f - 2.0 RC1g********************************************
 
 * bb_func_vthread.php: fixes with moved topics IDs. Earlier, when you have bookmarked some topic, or received notification about that topic, if the topic was moved to another forum, you saw an error that this topic no longer exists. Now, it should work ok. Fixed also "Delete" link displaying in the first post.
 
 * bb_func_vforum.php
 * bb_func_stats.php,
 * templates/stats.html (remove "Moderators" section): Moderators definition is CHANGED. Now, miniBB will have the same moderation routine as another forums - for every forum, you need to set up moderators separately. $mods array looks now as the following:
 
 $mods=array(
 FORUM_ID_1=>array(USER_ID_1, USER_ID_2, ...),
 FORUM_ID_2=>array(USER_ID_3, USER_ID_4, ...)
 ...
 );
 
 for example:
 
 $mods=array(
 1=>array(9,996),
 2=>array(9)
 );
 
 means that user with ID = 9 is the moderator for forums with IDs 1 and 2, and user 996 is moderator for forum 1.
 
 $modsOut variable, if existing, is not necessary anymore.
 
 Displaying list of moderators is now available on the first forums page. In default version, it is hidden. If you want to display this list, in HTML template main_forums_cell.html add variable {$moderatorsList} (for example, directly after {$forum_desc}).
 
 Moderators list was removed from the Stats script file and template.
 
 * bb_admin.php: paths, URLs fix (as it was described here: [urlc=https://www.minibb.com/forums/index.php?action=vthread&forum=3&topic=1974]http://www.minibb.com/forums/index.php?ac tion=vthread&forum=3&topic=19 74
 [/url]
 
 * bb_func_editprf.php
 * bb_func_inslng.php
 * bb_func_login.php
 * bb_func_man.php
 * bb_func_ptopic.php
 * bb_func_regusr.php
 * bb_func_viewip.php
 * bb_functions.php
 * index.php
 * _install.php
 
 The following templates were updated so now they have https://www.minibb.com/forums variable instead of "./". It is NOT NECESSARY TO UPDATE these templates! If your previous version works Ok, and path to files is not critical for your server, ignore these files:
 
 admin_panel.html
 main_forums.html
 main_forums_cell.html
 main_header.html
 main_lastdiscuss_cell.html (also added .views CSS style)
 main_last_discussions.html (+ .views)
 main_post_form.html
 main_posts.html
 main_topics.html (+ .views style)
 main_topics_cell.html (+ .views style)
 protect_forums.html
 search.html
 user_dataform.html
 
 The following templates were updated (no need to update them if you are happy with layout!)
 
 - admin_addforum1.html
 - admin_searchusers.html
 - lang/eng.php (just fixed some sentenses in English, nothing new here)
 
 templates/manual_eng.html: manual updated.
 
 $l_num_posts was deleted from language pack.
 
 templates/main_forums.html : $l_num_posts changed to $l_replies
 
 New CSS style in bb_default_style.css: .views (defines views column color in Last Discussions and Topics list)
 |