1
0
Fork 0

Forum class - rename Class CamelCase and rename some methods

This commit is contained in:
rabuzarus 2016-02-04 14:51:54 +01:00
commit 52dbb0b4a2
5 changed files with 9 additions and 9 deletions

View file

@ -3,7 +3,7 @@
* @file include/identity.php
*/
require_once('include/Forum.php');
require_once('include/ForumManager.php');
require_once('include/bbcode.php');
require_once("mod/proxy.php");
@ -655,7 +655,7 @@ function advanced_profile(&$a) {
//show subcribed forum if it is enabled in the usersettings
if (feature_enabled($uid,'forumlist_profile')) {
$profile['forumlist'] = array( t('Forums:'), Forum::profile_advanced($uid));
$profile['forumlist'] = array( t('Forums:'), ForumManager::profile_advanced($uid));
}
if ($a->profile['uid'] == local_user())