Sorry Kirby, Im new to this sorry let me try again.
Quote:
cache_ordered_forums
PHP Code:
$forumcheck = end($vbulletin->forumcache);
if (!$forumcheck['sorted'])
{
function forumsort($forum1, $forum2)
{
return strnatcasecmp($forum1['title_clean'], $forum2['title_clean']);
}
uasort($vbulletin->forumcache, 'forumsort');
$lastforum = end($vbulletin->forumcache);
$vbulletin->forumcache["$lastforum[forumid]"]['sorted'] = 1;
build_datastore('forumcache', serialize($vbulletin->forumcache));
}
|
First off you say its a plugin? do I need to make it a plug-in? if so how, where
3.5 is my first Vbulletin experience.
Secondly, I can potentially have under each section about 150-200 forums per game, right now I have basically 25 users so not a problem there it's a start.
Thirdly you said do not use in a production environment. So is it possible to make it so we can use it in larger forums, with more users and have it be stable and fast?
Thanks again in advance Kirby.