The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
Is there a way to get rid of the page split on the who's online box, and just have all of the users/guests displayed on the first page?
( [vb3] ) |
|
#2
|
||||
|
||||
|
** Untested **
In functions_online.php comment out PHP Code:
In online.php comment out PHP Code:
|
|
#3
|
||||
|
||||
|
ahh, I figured it out
![]() If anyone else wants to know, change: Code:
$perpage = intval($perpage);
if ($perpage == 0)
{
return $default;
}
else if ($perpage < 1)
{
return 1;
}
else if ($perpage > $max)
{
return $max;
}
else
{
return $perpage;
}
Code:
$perpage = intval($perpage); return 999; |
|
#4
|
||||
|
||||
|
And what if you got more then 999 users currently logged in?
|
|
#5
|
||||
|
||||
|
then put 99999 :P
|
|
#6
|
||||
|
||||
|
And if you got more then 99999 users currently logged in?
(I know, most likely this will not happen - I just wanted to point out that this does not turn off page splitting, it only increases the limit )
|
|
#7
|
||||
|
||||
|
meh, I'm sure theres a way, I'm just not that great at php
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|