
10-22-2012, 08:32 PM
|
|
|
Join Date: Apr 2009
Posts: 687
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by BirdOPrey5
This mod is probably due for an overhaul... I will look into a fresh rebuild of this mod and see which features I can add. No promises of how soon though.
|
Quote:
Originally Posted by LancerForHireLLC
hook: forumdisplay_start
PHP Code:
if (in_array($foruminfo['forumid'], $masterForums)) { // *Tell* the forum it will contain threads! >=) $foruminfo['cancontainthreads'] = true; }
hook: forumdisplay_query_threadscount
PHP Code:
if (in_array($foruminfo['forumid'], $masterForums)) { $childForums = implode(', ', $foruminfo['childlist']);
// Add an OR IN(children) condition and the default thread count query ones. $hook_query_where .= "OR forumid IN($childForums) AND sticky = 0 $prefix_filter $visiblethreads $globalignore $limitothers $datecut"; }
hook: forumdisplay_query_threadid
PHP Code:
if (in_array($foruminfo['forumid'], $masterForums)) { $childForums = implode(', ', $foruminfo['childlist']);
// Same deal for the thread id query. $hook_query_where .= "OR forumid IN($childForums) AND sticky = 0 $prefix_filter $visiblethreads $globalignore $limitothers $datecut"; }
|
;-)
|